This journal complements the 17-Energy Results journal to understand the sensitivity of our metrics to three module design aspects; lifetime, efficiency, and material circularity. This journal creates a simple modern module; 25 years, 20% efficiency, no material circularity, and modifies first one parameter, and then two parameters at a time. This will allow us to elucidate if there are multiplicative effects of changing design aspects
import numpy as np
import pandas as pd
import os,sys
from pathlib import Path
import matplotlib.pyplot as plt
cwd = os.getcwd() #grabs current working directory
testfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'TEMP' / 'EnergyAnalysis'/'Sensitivity')
inputfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'TEMP')
baselinesfolder = str(Path().resolve().parent.parent /'PV_ICE' / 'baselines')
supportMatfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'baselines' / 'SupportingMaterial')
altBaselinesfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'baselines' / 'Energy_CellModuleTechCompare')
if not os.path.exists(testfolder):
os.makedirs(testfolder)
from platform import python_version
print(python_version())
3.8.8
import PV_ICE
PV_ICE.__version__
'v0.2.0+470.g2ad59aa'
colorpalette=['#000000', #PV ICE baseline '#595959', '#7F7F7F', '#A6A6A6', '#D9D9D9', # greys
#'#067872','#0aa39e','#09d0cd','#00ffff', # teals
'#0579C1','#C00000','#FFC000', #b,r,y
'#6E30A0','#00B3B5','#10C483', #
'#97CB3F','#FF7E00' #
]
colormats = ['#00bfbf','#ff7f0e','#1f77be','#2ca02c','#d62728','#9467BD','#8C564B'] #colors for material plots
import matplotlib as mpl #import matplotlib from cycler import cycler #import cycler mpl.rcParams['axes.prop_cycle'] = cycler(color=colorpalette) #reset the default color palette of mpl
plt.rcParams.update({'font.size': 14}) plt.rcParams['figure.figsize'] = (8, 6)
scennames_labels = []
scennames_labels_flat = []
MATERIALS = ['glass', 'silicon', 'silver', 'aluminium_frames', 'copper', 'encapsulant', 'backsheet']
moduleFile_m = os.path.join(baselinesfolder, 'baseline_modules_mass_US.csv')
moduleFile_e = os.path.join(baselinesfolder, 'baseline_modules_energy.csv')
#load in a baseline and materials for modification
sim1 = PV_ICE.Simulation(name='sim1', path=testfolder)
sim1.createScenario(name='PV_ICE', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['PV_ICE'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
path = C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\TEMP\EnergyAnalysis\Sensitivity Baseline folder directed to default: C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\baselines
First, examine only the effect of one set of parameters (life, eff, material circularity) at a time. Possibly get to interactions.
timeshift = 2022-1995
#life sensitivity
#mod_reliability_t50, mod_reliability_t90, mod_degradation, mod_lifetime
sim1.createScenario(name='life_high', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['life_high'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim1.modifyScenario('life_high', 'mod_degradation',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']-0.1, start_year=2022) #standard current degrdation
#T50
sim1.modifyScenario('life_high', 'mod_reliability_t50',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']+10, start_year=2022)
#t90
sim1.modifyScenario('life_high', 'mod_reliability_t90',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']+10, start_year=2022)
#Mod Project Lifetime
sim1.modifyScenario('life_high', 'mod_lifetime',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']+10, start_year=2022) #project lifetime of 25 years
#--------------------------------------------------------------------------------------
#life low
sim1.createScenario(name='life_low', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['life_low'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim1.modifyScenario('life_low', 'mod_degradation',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']+0.1, start_year=2022) #standard current degrdation
#T50
sim1.modifyScenario('life_low', 'mod_reliability_t50',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']-10, start_year=2022)
#t90
sim1.modifyScenario('life_low', 'mod_reliability_t90',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']-10, start_year=2022)
#Mod Project Lifetime
sim1.modifyScenario('life_low', 'mod_lifetime',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']-10, start_year=2022) #project lifetime of 25 years
sim1.createScenario(name='eff_high', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['eff_high'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim1.modifyScenario('eff_high', 'mod_eff',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#-------------------------------------------------------------------------------------------------------
sim1.createScenario(name='eff_high_bifi', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['eff_high_bifi'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim1.modifyScenario('eff_high_bifi', 'mod_eff',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#------------------------------------------------------------------------------------------------------
sim1.createScenario(name='eff_low', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['eff_low'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim1.modifyScenario('eff_low', 'mod_eff',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']-5, start_year=2022) #
Here, we will use recycling as a stand in for the forms of material circularity. We set to 0 or 100%.
mod_circ_vars = ['mod_EOL_collection_eff', 'mod_EOL_pg4_recycled', 'mod_EOL_pb4_recycled']
mat_circ_vars = ['mat_MFG_scrap_Recycled', 'mat_MFG_scrap_Recycling_eff', 'mat_MFG_scrap_Recycled_into_HQ',
'mat_MFG_scrap_Recycled_into_HQ_Reused4MFG', 'mat_PG4_Recycling_target', 'mat_Recycling_yield',
'mat_EOL_Recycled_into_HQ', 'mat_EOL_RecycledHQ_Reused4MFG']
sim1.createScenario(name='circ_high', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['circ_high'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_circ_vars)):
sim1.modifyScenario('circ_high', mod_circ_vars[var], 100.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim1.scenario['circ_high'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
#-----------------------------------------------------------------------------------------------------------
sim1.createScenario(name='circ_low', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['circ_low'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_circ_vars)):
sim1.modifyScenario('circ_low', mod_circ_vars[var],0.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim1.scenario['circ_low'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],0.0, start_year=2022) #
#trim to start in 2000, this trims module and materials
#had to specify and end year, cannot use to extend
sim1.trim_Years(startYear=2000, endYear=2100)
Trimming and extending PV_ICE PV_ICE glass : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silicon : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silver : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE copper : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending life_high life_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 life_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 life_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 life_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 life_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 life_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 life_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 life_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending life_low life_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 life_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 life_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 life_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 life_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 life_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 life_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 life_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_high eff_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_high_bifi eff_high_bifi glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_low eff_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_high circ_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_low circ_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100
global_projection = pd.read_csv(os.path.join(supportMatfolder,'output-globalInstallsProjection.csv'), index_col=0)
global_projection.iloc[-1,:]
#fig, ax1 = plt.subplots()
#ax1.stackplot(global_projection.index, global_projection['World_cum']/1e6, color='#F7A11A')
#ax1.set_ylabel('Cumulative Solar Capacity [TW]', color='#F7A11A')
#ax1.set_ylim(0,90)
#ax1.set_xlim(2000,2100)
#ax2 = ax1.twinx()
#ax2.plot(global_projection['World_annual_[MWdc]']/1e6)
#ax2.set_ylabel('Annual Installations [TW]')
#ax2.set_ylim(0,5)
#plt.show()
#fig.savefig('energyresults-deployment.png', dpi=300, bbox_inches='tight')
World_cum 85966000.0 World_annual_[MWdc] 219320.0 Name: 2100, dtype: float64
#deployment projection for all scenarios
sim1.modifyScenario(scenarios=None,stage='new_Installed_Capacity_[MW]',
value= global_projection['World_annual_[MWdc]'], start_year=2000)
sim1.scenario.keys()
dict_keys(['PV_ICE', 'life_high', 'life_low', 'eff_high', 'eff_high_bifi', 'eff_low', 'circ_high', 'circ_low'])
bifiFactors = {'PV_ICE':0.0,
'life_high':0.0,
'life_low': 0.0,
'eff_high': 0.0,
'eff_high_bifi': 0.9,
'eff_low': 0.0,
'circ_high':0.0,
'circ_low': 0.0
}
#PV ICE currently set up to read in a csv of bifi factors, so generate files to read in
idx_temp = pd.RangeIndex(start=2000,stop=2101,step=1) #create the index
df_temp = pd.DataFrame(index=idx_temp, columns=['bifi'], dtype=float)
bifiPathDict={}
for f in bifiFactors.keys(): #loop over module types
bifi = df_temp.copy() #copy of df
bifi['bifi'] = bifiFactors[f] #assign column
bifipath = os.path.join(testfolder,'bifi_'+str(f)+'.csv') #create file path
bifi.to_csv(path_or_buf=bifipath, index_label='year') #create file
bifiPathDict[str(f)] = bifipath
#append bifi path to dict? or list?
#CALCULATE MASS FLOWs
#13 scenarios, 7 mats =
for scen in sim1.scenario.keys(): #loop over scenarios
sim1.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: life_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet
#sim1.calculateMassFlow()
ii_yearly, ii_cumu = sim1.aggregateResults() #have to do this to get auto plots
sim1.saveSimulation(customname='_EnergySensitivity_identicalinstalls')
:) Saved Input and Output Dataframes
effective_capacity = ii_yearly.filter(like='ActiveCapacity')
plt.plot(ii_cumu['newInstalledCapacity_sim1_PV_ICE_[MW]']/1e6, label='Capacity Target', color='black', ls='--')
plt.plot(effective_capacity/1e6, label=sim1.scenario.keys())
plt.legend()
plt.ylabel('Effective Capacity [TW]')
plt.title('Effective Capacity: No Replacements')
plt.ylim(0,)
(0.0, 90.26425956655)
sim1.scenario['eff_high'].dataIn_m
| year | new_Installed_Capacity_[MW] | mod_eff | mod_reliability_t50 | mod_reliability_t90 | mod_degradation | mod_lifetime | mod_MFG_eff | mod_Repair | mod_MerchantTail | ... | mod_EOL_pg1_landfill | mod_EOL_pg2_stored | mod_EOL_pg3_reMFG | mod_EOL_pg4_recycled | mod_EOL_reMFG_yield | mod_EOL_sp_reMFG_recycle | mod_EOL_pb1_landfill | mod_EOL_pb2_stored | mod_EOL_pb3_reMFG | mod_EOL_pb4_recycled | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 2000 | 808.669 | 13.420000 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 1 | 2001 | 284.317 | 13.600000 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 2 | 2002 | 344.073 | 13.722222 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 3 | 2003 | 527.971 | 13.844444 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 4 | 2004 | 1086.949 | 13.966667 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 96 | 2096 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 97 | 2097 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 98 | 2098 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 99 | 2099 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 100 | 2100 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
101 rows × 22 columns
#plt.plot(sim1.scenario['eff_high'].dataOut_m['Yearly_Sum_Area_PathsBad'])
#plt.plot(sim1.scenario['eff_high'].dataOut_m['Cumulative_Active_Area'])
plt.plot(sim1.scenario['eff_high'].dataOut_m['Area']/1e10, label='eff_high')
#plt.plot(sim1.scenario['eff_high_bifi'].dataOut_m['Yearly_Sum_Area_PathsBad'])
#plt.plot(sim1.scenario['eff_high_bifi'].dataOut_m['Cumulative_Active_Area'])
plt.plot(sim1.scenario['eff_high_bifi'].dataOut_m['Area']/1e10, label='eff_high_bifi')
plt.plot(sim1.scenario['PV_ICE'].dataOut_m['Area']/1e10, label='PVICE')
plt.plot(sim1.scenario['eff_high_bifi'].dataIn_m['new_Installed_Capacity_[MW]']/1e6, label='eff_high_bifi_installs')
plt.plot(sim1.scenario['PV_ICE'].dataIn_m['new_Installed_Capacity_[MW]']/1e6, label='PVICE_installs')
plt.legend()
<matplotlib.legend.Legend at 0x20506ba1a60>
UnderInstall_df = pd.DataFrame()
for row in range (0,len(sim1.scenario['PV_ICE'].dataIn_m)): #loop over length of years
print(row)
for scen in sim1.scenario.keys(): #loop over scenarios
print(scen)
Under_Installment = global_projection.iloc[row,0] - ((sim1.scenario[scen].dataOut_m['Effective_Capacity_[W]'][row])/1e6) # MWATTS
sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
UnderInstall_df.loc[row,scen] = Under_Installment #save the underinstallment as df
#calculate flows for that scenario with it's bifi factor and modified weibull
sim1.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
sim1.calculateEnergyFlow()
0 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 1 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 2 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 3 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 4 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 5 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 6 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 7 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 8 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 9 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 10 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 11 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 12 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 13 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 14 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 15 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 16 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 17 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 18 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 19 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 20 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 21 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522281.0480266041 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 22 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787195276.6245084 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92137323.551914 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522370.0331784635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315981852.8637393 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905079.478916816 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185870755.69400868 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78249089.93890864 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 23 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787421571.4978733 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92145977.2661618 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522470.6197191128 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316010223.10240877 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905299.08363438 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185888718.48207664 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78260304.15714504 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 24 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787753322.5102015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92158135.3186515 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522593.43704018486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316050622.1522593 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905609.6324606165 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185913857.16491142 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78275471.89481662 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 25 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2788227043.1910014 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92175283.71670865 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522747.92204010184 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316107844.0453842 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1906031.5436963488 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185948190.46619388 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78296097.5906738 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 26 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2788888852.2380667 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92198945.35354482 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522940.98065930686 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316187461.4129709 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1906594.3077959258 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185994449.43586808 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78322998.88555433 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 27 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2789926501.1222167 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92235084.68404324 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523177.6819884945 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316309971.9112594 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1907391.761098963 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186064979.1339966 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78359045.09197274 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 28 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2791301481.9354954 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92281736.62505063 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523468.5348794645 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316469328.64485127 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1908399.0236872435 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186155843.23558044 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78404029.8430971 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 29 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2793101589.7211823 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92341238.93991047 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523820.6539082674 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316674172.1953207 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1909655.0701142598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186273929.41358855 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78459126.38977602 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 30 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2795367450.4316335 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92415953.5149775 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 524234.9240568888 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316931048.95472646 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1911181.2284745786 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186423578.9659491 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78524902.07039961 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 31 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2797740088.0142555 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92493997.85689422 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 524670.3802205924 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317199017.14066404 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1912786.0908413366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186581352.8259736 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78590032.36400834 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 32 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2800993751.8636756 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92601022.23171073 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 525267.2749926466 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317566489.36051166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1914986.48129674 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186797712.50454617 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78679320.83767305 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 33 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2804174565.4355016 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92705650.30630213 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 525850.6512047087 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317925733.79332805 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1917137.3588633481 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187009227.84044114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78766594.05575582 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 34 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2808613754.4781585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92851670.7478629 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 526664.6914524983 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 318427100.4763427 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1920138.9447025075 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187304421.67694125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78888380.21572058 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 35 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2813439329.2291484 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93010400.76570019 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 527549.5047579606 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 318972105.96795267 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1923401.651473931 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187625309.09812894 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79020757.86377515 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 36 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2818032791.4253945 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93161495.79043178 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 528391.7146926689 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 319490896.4233161 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1926507.3449560367 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187930761.67415085 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79146763.28798284 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 37 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2824257545.2388563 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93366249.69744375 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 529532.9892598252 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 320193926.6709692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1930715.915950823 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 188344690.64671937 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79317513.8106859 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 38 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2830060746.3905454 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93557137.2641801 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 530596.9585714351 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 320849346.31728977 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1934639.4446724465 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 188730587.5291201 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79476698.9404396 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 39 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2836579374.5242863 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93771557.72460942 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 531792.0864684732 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 321585567.03999704 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1939046.6541563289 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189164058.33404103 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79655507.5719415 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 40 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2844772000.2107983 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94041041.81478697 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 533294.1201828112 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 322510850.80830634 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1944585.6332488398 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189708845.3625212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79880233.96856377 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 41 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2852784634.3728247 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94304605.35469502 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 534763.1517727083 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 323415806.14438707 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1950002.9160047998 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 190241663.45069712 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80100022.82646595 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 42 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2861674070.7769837 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94597009.98456965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 536392.9345323204 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 324419788.44858617 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1956012.9955901532 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 190832786.47142273 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80343862.46569243 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 43 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2872313003.2230663 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94946961.65335065 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 538343.4680064864 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 325621360.67721933 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1963205.8946048683 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 191540246.15715513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80635691.17438301 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 44 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2884196069.6063523 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 95337837.2352891 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 540522.0997540507 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 326963446.70225245 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1971239.942219598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 192330437.3207574 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80961646.76876783 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 45 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2895657711.0240116 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 95714850.67732444 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 542623.4677022506 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 328257936.54809034 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1978989.0675110093 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 193092604.88563365 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 81276042.55495977 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 46 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2909514269.5710473 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96170641.31343117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 545163.9177613085 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 329822910.85532695 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1988357.3772798944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 194014027.83898902 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 81656131.53223194 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 47 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2922924819.8279414 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96611761.17817841 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 547622.5970177903 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 331337512.51682204 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1997424.1443416267 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 194905792.47029212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82023986.38569231 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 48 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2938565694.2934284 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 97126244.20061798 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 550490.1820781209 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 333104009.34199774 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2007998.8159697722 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 195945867.5144763 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82453019.60724808 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 49 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2955371900.3007436 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 97679059.05003479 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 553571.4180643447 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 335002119.93809533 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2019361.359042944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 197063433.89442506 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82914018.17354493 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 50 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2975389712.6847734 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 98337514.8570096 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 557241.4673220231 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 337262952.73880476 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2032895.2438078865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 198394563.2469258 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 83463111.93124261 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 51 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2997077331.212422 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99050896.42363763 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 560767.4137569807 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 339712375.20295477 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2047558.0713110892 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 199836730.10582942 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 84058008.90221876 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 52 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3015817080.9179287 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99667312.28257981 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 564203.1440543853 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 341828862.2595073 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2060227.8679987553 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 201082871.81267345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 84572045.07094066 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 53 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3035416181.6079946 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 100311995.19863883 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 567796.4270544758 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 344042405.3207792 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2073478.6650961826 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 202386157.99153593 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85109653.45885612 tonnes. circ_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 54 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3055971913.195142 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 100988145.04810843 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 571428.0465142544 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 346363991.282484 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2087376.2327834861 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 203753057.4884865 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85665862.4336774 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 55 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3077552471.375847 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 101698005.02577409 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 574907.5228115292 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 348801322.238362 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2101422.880456818 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 205188105.12938696 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 86200868.42035276 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 56 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3099775636.2760825 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 102394201.90379474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 578237.8342585985 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 351227318.19112796 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2115078.32507386 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 206596889.55809063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 86714638.74314183 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 57 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3120846512.782079 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 103028070.13692683 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 580869.3039919726 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 353463949.5712474 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2127242.775371737 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 207879100.6267007 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87144186.62409392 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 58 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3141313723.7506366 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 103638822.48560081 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 583282.4200130433 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 355626826.0576378 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2138675.5043504247 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 209107859.0308703 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87539226.61699185 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 59 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3161209910.5689354 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104235758.12859832 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 585633.9891010947 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 357735405.107835 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2149515.978349514 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 210311380.46317437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87909011.25213963 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 60 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3180885815.8628216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104828164.82524592 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 588044.6004268441 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 359824289.52355015 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2160356.4688913035 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 211531178.87541956 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88269545.89969556 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 61 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3200477911.0676184 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 105424114.46718764 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 590617.9217952703 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 361911204.6060303 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2171457.4305810607 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 212780225.36896104 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88645579.93173994 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 62 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3213364918.3037395 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 105764716.64868635 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 591109.5194818717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 363145046.2009012 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2176266.0539972535 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 213577083.50659513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88685426.03433602 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 63 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3224276117.0574393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106072112.84309636 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 591747.0710837702 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 364229434.64980394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2180891.533722879 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 214325096.8655666 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88721504.03642517 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 64 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3233159691.4400015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106355022.30992965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 592712.4385074496 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 365183516.62116724 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2185720.4844666948 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 214967588.90801114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88785433.40861087 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 65 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3242505656.2274404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106657342.84706168 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 594478.3200243704 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 366212001.7636639 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2192232.450732148 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 215617689.47829115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88942766.62065046 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 66 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3180084591.6749086 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104604095.8866218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 583034.0933911637 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 359162101.0308466 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2150030.062261832 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 211466860.72407037 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87230540.71719038 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 67 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3108316553.9718065 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 102243394.31373188 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 569876.2003884964 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 351056543.3121035 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2101508.259107552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 206694484.01650354 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85261924.9289682 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 68 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3028386085.161887 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99614201.85591367 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 555221.813980373 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 342029112.0326631 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2047467.9007844112 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 201379328.13678688 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 83069411.54982078 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 69 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2939464840.3230333 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96689271.3538033 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 538919.0660900951 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 331986253.04513544 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1987348.9498364474 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 195466310.43059915 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80630278.86484602 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 70 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2842607769.427746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93503303.7988045 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 521161.3703779141 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 321047113.5098179 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1921864.6496034728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189025582.16356662 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 77973464.42393544 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 71 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2738586442.8181143 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 90081678.83592993 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 502090.1859157266 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 309298835.3932743 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1851536.652696552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 182108450.63691542 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 75120132.6006148 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 72 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2625935825.684617 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 86376206.35033397 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 481436.91442655836 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 296575956.12207294 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1775374.460658196 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 174617495.07359102 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 72030097.11212347 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 73 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2506647741.0719676 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 82452404.3629218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 459566.7351091357 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 283103434.28740734 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1694724.7293088338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 166685166.2164086 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 68757994.17840911 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 74 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2379819490.372835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 78280579.9617737 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 436314.1479432675 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 268779318.15841615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1608977.1512534993 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 158251437.09590587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 65279062.543803245 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 75 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2245536746.9510183 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 73863551.24323379 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 411694.8602130056 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 253613283.77498367 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1518189.6495764325 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 149322004.75465128 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 61595652.25077597 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 76 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2105520501.6696033 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 69257927.61125739 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 386024.3969676588 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 237799701.65664226 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1423525.772600281 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 140011310.34182188 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 57754970.5226664 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 77 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1959083922.049504 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 64441116.74528538 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 359176.8349054366 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 221261000.2202678 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1324521.158313531 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 130273681.39053562 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 53738177.36739079 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 78 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1805724760.735071 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 59396597.97455112 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 331060.09240925784 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 203940455.12086532 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1220836.241247966 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 120075719.8358844 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 49531496.010418765 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 79 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1646019453.358442 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 54143332.28150599 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 301779.85271379474 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 185903169.6054645 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1112860.744979274 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 109455757.05869274 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 45150738.229843184 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 80 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1481457612.8480675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 48730318.24122223 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 271609.2202281302 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 167317382.12611946 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1001601.7850369237 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 98512848.21318437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 40636764.49256736 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 81 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1310308917.5888746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 43100639.52870291 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 240230.959210561 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 147987668.3383473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 885889.5046505865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 87131931.68089166 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 35942111.63031817 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 82 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1135215822.7825544 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 37341215.730306655 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 208129.5352243238 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 128212469.91398415 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 767510.4469004982 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 75488723.44986369 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 31139262.870953165 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 83 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 954885228.7516917 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 31409512.278556384 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 175067.87243814635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 107845742.81439057 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 645590.3573132949 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 63497235.95546063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 26192748.15673938 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 84 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 771108458.209719 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 25364452.037759025 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 141374.3904849315 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 87089800.91230604 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 521340.33501985366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 51276587.22106629 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 21151703.931814503 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 85 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 583674688.7977773 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 19199100.323755916 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 107010.43736680906 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 65920833.70861661 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 394617.84468934353 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 38812758.14086345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 16010347.284489097 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 86 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 541258251.8884532 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 17803875.47808761 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 99233.84271173221 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 61130276.678002685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 365940.42688485445 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 35992181.99021735 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 14846853.477883097 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 87 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 500953793.6608844 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 16478120.992143434 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 91844.45649104803 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 56578248.74270194 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 338690.9011774867 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 33312046.601089396 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 13741291.791345526 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 88 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 473287878.4664393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 15568092.3553685 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 86772.21035474804 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 53453631.16045556 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 319986.1945405117 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 31472339.490610827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 12982408.600575961 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 89 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 452197757.66976273 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 14874364.57722973 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 82905.56495468837 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 51071690.718947 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 305727.33053158113 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 30069904.5840552 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 12403901.146497197 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 90 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 429941374.7770426 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 14142274.362933483 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 78825.0980212005 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 48558031.408744134 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 290679.96593573707 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 28589916.462444384 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 11793402.822262915 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 91 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 406430660.41854113 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 13368924.803126842 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 74514.66298847455 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 45902706.58252997 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 274784.55774805555 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 27026518.755418587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 11148497.862341914 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 92 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 379712340.90829295 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 12490065.900034772 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 69616.14826550975 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 42885111.45426326 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 256720.51306492495 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 25249824.146273278 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 10415607.465641463 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 93 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 350786605.0973553 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 11538597.360399228 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 64312.92765359517 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 39618208.405546635 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 237164.05166469404 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 23326342.436986063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 9622167.07036514 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 94 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 319830312.2845469 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 10520336.704641059 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 58637.42639110793 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 36121972.11174462 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 216234.74672168825 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 21267834.283486955 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 8773027.972703991 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 95 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 287058768.3494613 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 9442366.09558476 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 52629.11848092178 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 32420719.445522044 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 194078.16483967655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 19088616.933364976 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 7874096.068477805 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 96 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 252461179.52559337 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 8304330.488528256 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 46286.025002763716 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 28513231.347528692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 170687.00843842118 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 16787972.630896233 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 6925075.281886872 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 97 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 198678686.19520208 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 6535236.325410165 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 36425.58691212609 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 22438979.941201463 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 134325.089706305 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 13211585.054205708 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 5449807.6155453995 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 98 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 138970435.17024675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 4571223.282553531 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 25478.72527975299 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 15695467.223602524 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 93956.81302435767 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 9241150.922791 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 3811994.886972222 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 99 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 73253083.5953516 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 2409549.9221808827 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 13430.160095090034 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 8273280.364921921 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 49525.8309466649 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 4871128.166470632 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 2009350.9801444006 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 100 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Energy Flows <<<< Working on Scenario: PV_ICE ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: life_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: life_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_high_bifi ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet
sim1.saveSimulation(customname='_EnergySensitivity_withreplacements')
#aggregate results - mass
cc_yearly, cc_cumu = sim1.aggregateResults() #have to do this to get auto plots
cc_yearly.to_csv(os.path.join(testfolder, 'cc_10scen_yearly.csv'))
cc_cumu.to_csv(os.path.join(testfolder, 'cc_10scen_cumu.csv'))
#aggregate results - energy
allenergy, energyGen, energy_demands = sim1.aggregateEnergyResults()
allenergy.to_csv(os.path.join(testfolder, 'cc_10scen_allenergy.csv'))
energyGen.to_csv(os.path.join(testfolder, 'cc_10scen_energyGen.csv'))
energy_demands.to_csv(os.path.join(testfolder, 'cc_10scen_energy_demands.csv'))
UnderInstall_df.to_csv(os.path.join(testfolder, 'cc_10scen_underInstalls.csv'))
:) Saved Input and Output Dataframes
C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1)
cumu_installs = cc_cumu.filter(like='newInstalled')
total_installed = cumu_installs.loc[2100]
total_installed.index= scennames_labels
plt.bar(scennames_labels, total_installed/1e6)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed [TW]')
plt.title('Cumulative Installs with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Installs with Replacements')
cumu_area_deployed = pd.DataFrame()
for scen in sim1.scenario.keys():
area_deploy = sim1.scenario[scen].dataOut_m['Area'].cumsum()
cumu_area_deployed = pd.concat([cumu_area_deployed,area_deploy], axis=1)
cumu_area_deployed.columns = sim1.scenario.keys()
cumu_area_deployed_total = cumu_area_deployed.iloc[-1,:]
#cumu_area_deployed
plt.bar(scennames_labels, cumu_area_deployed.iloc[-1,:]/1e12)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed Area [m2 1e12]')
plt.title('Cumulative Area Deployed with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Area Deployed with Replacements')
cumu_virgin_module = cc_cumu.filter(like='VirginStock_Module')
virgin = cumu_virgin_module.loc[2100]
virgin.index= scennames_labels
plt.bar(scennames_labels, virgin/1e9)
#plt.legend(scennames)
plt.title('Cumulative Virgin Material Demands')
plt.ylabel('Virgin Material Requirements\n[billion tonnes]')
#plt.xticks(rotation=90)
Text(0, 0.5, 'Virgin Material Requirements\n[billion tonnes]')
cumu_lifecycle_wastes = cc_cumu.filter(like='WasteAll_Module')
wastes = cumu_lifecycle_wastes.loc[2100]
wastes.index= scennames_labels
plt.bar(scennames_labels, wastes/1e9)
#plt.legend(scennames)
plt.title('Cumulative Lifecycle Wastes')
plt.ylabel('Lifecycle Wastes\n[billion tonnes]')
Text(0, 0.5, 'Lifecycle Wastes\n[billion tonnes]')
allenergy = pd.DataFrame() energyGen = pd.DataFrame() energyFuel = pd.DataFrame() energy_mod=pd.DataFrame() energy_mat = pd.DataFrame() energy_demands = pd.DataFrame()
for scen in scenarios:
# add the scen name as a prefix
scende = sim1.scenario[scen].dataOut_e.add_prefix(str(scen+'_'))
#concat into one large df
#energy_mod = pd.concat([energy_mod, scende], axis=1)
#material level energy
for mat in materials:
# add the scen name as a prefix
scenmatde = sim1.scenario[scen].material[mat].matdataOut_e.add_prefix(str(scen+'_'+mat+'_'))
#concat into one large df
#energy_mat = pd.concat([energy_mat, scenmatde], axis=1)
#compile module and material energies into one df
allenergy_scen = pd.concat([scende,scenmatde], axis=1) #df of mod and mat energy for scenario
#select df to sum the total demand
energyGen_scen = allenergy_scen.filter(like='e_out_annual') #select all columns of energy generation
energyFuel_scen = allenergy_scen.filter(like='_fuel') #select all columns of fuel attributable
energy_demands_1 = allenergy_scen.loc[:,~allenergy_scen.columns.isin(energyGen_scen.columns)] #select all columns that are NOT energy generation, i.e. demands
energy_demands_scen = energy_demands_1.loc[:,~energy_demands_1.columns.isin(energyFuel_scen.columns)] #select all columns that are NOT fuel (this avoids double counting)
colname = str(scen+'_e_demand_total')
energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1)
allenergy = pd.concat([allenergy,allenergy_scen], axis=1)
energyGen = pd.concat([energyGen,energyGen_scen], axis=1)
energyFuel = pd.concat([energyFuel,energyFuel_scen], axis=1)
energy_demands = pd.concat([energy_demands,energy_demands_scen], axis=1)
allenergy.index = sim1.scenario[scen].dataIn_e['year'] energyGen.index = sim1.scenario[scen].dataIn_e['year'] energyFuel.index = sim1.scenario[scen].dataIn_e['year'] energy_demands.index = sim1.scenario[scen].dataIn_e['year']
energy_demands = pd.concat([energy_demands,energyFuel], axis=1) #append fuel energy columns back onto energy demands
return allenergy, energyGen, energy_demands #note, all these are annual
e_annual_sumDemands = energy_demands.filter(like='demand_total')
e_annual_sumDemands_cumu = e_annual_sumDemands.cumsum()
cumu_e_demands = e_annual_sumDemands_cumu.loc[2100]
cumu_e_demands.index= scennames_labels
plt.bar(scennames_labels, cumu_e_demands/1e12)
plt.title('Cumulative Lifecycle Energy Demands')
plt.ylabel('Cumulative Energy Demands\n[TWh]')
Text(0, 0.5, 'Cumulative Energy Demands\n[TWh]')
e_demands_eff_high = energy_demands.filter(like='eff_high')
e_demands_eff_high_cumu = e_demands_eff_high.cumsum()
e_demands_eff_high_cumu
#plt.bar(e_demands_eff_high_cumu.columns, e_demands_eff_high_cumu.iloc[-1,:])
| eff_high_mod_MFG | eff_high_mod_Install | eff_high_mod_OandM | eff_high_mod_Repair | eff_high_mod_Demount | eff_high_mod_Store | eff_high_mod_Resell_Certify | eff_high_mod_ReMFG_Disassembly | eff_high_mod_Recycle_Crush | eff_high_backsheet_mat_extraction | ... | eff_high_bifi_backsheet_mat_Recycled_HQ_elec | eff_high_bifi_e_demand_total | eff_high_backsheet_mat_MFG_virgin_fuel | eff_high_backsheet_mat_MFGScrap_HQ_fuel | eff_high_backsheet_mat_Landfill_fuel | eff_high_backsheet_mat_Recycled_HQ_fuel | eff_high_bifi_backsheet_mat_MFG_virgin_fuel | eff_high_bifi_backsheet_mat_MFGScrap_HQ_fuel | eff_high_bifi_backsheet_mat_Landfill_fuel | eff_high_bifi_backsheet_mat_Recycled_HQ_fuel | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| year | |||||||||||||||||||||
| 2000 | 5.595432e+10 | 5.724557e+07 | 0.0 | 0.0 | 0.000000e+00 | 0.0 | 0.0 | 0.0 | 0.000000e+00 | 2.361798e+10 | ... | 0.0 | 8.782771e+10 | 1.243623e+10 | 0.0 | 0.0 | 0.0 | 1.131697e+10 | 0.0 | 0.0 | 0.0 |
| 2001 | 7.599869e+10 | 7.752961e+07 | 0.0 | 0.0 | 3.657513e-01 | 0.0 | 0.0 | 0.0 | 1.547705e+00 | 3.224195e+10 | ... | 0.0 | 1.203906e+11 | 1.697724e+10 | 0.0 | 0.0 | 0.0 | 1.555949e+10 | 0.0 | 0.0 | 0.0 |
| 2002 | 1.003605e+11 | 1.019176e+08 | 0.0 | 0.0 | 2.862575e+01 | 0.0 | 0.0 | 0.0 | 1.211321e+02 | 4.291771e+10 | ... | 0.0 | 1.594725e+11 | 2.259865e+10 | 0.0 | 0.0 | 0.0 | 2.070531e+10 | 0.0 | 0.0 | 0.0 |
| 2003 | 1.376869e+11 | 1.388866e+08 | 0.0 | 0.0 | 3.744197e+02 | 0.0 | 0.0 | 0.0 | 1.584386e+03 | 5.956614e+10 | ... | 0.0 | 2.198089e+11 | 3.136501e+10 | 0.0 | 0.0 | 0.0 | 2.872989e+10 | 0.0 | 0.0 | 0.0 |
| 2004 | 2.141538e+11 | 2.138242e+08 | 0.0 | 0.0 | 2.361542e+03 | 0.0 | 0.0 | 0.0 | 9.993052e+03 | 9.421588e+10 | ... | 0.0 | 3.440825e+11 | 4.961009e+10 | 0.0 | 0.0 | 0.0 | 4.540641e+10 | 0.0 | 0.0 | 0.0 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 2096 | 2.084757e+15 | 5.842628e+12 | 0.0 | 0.0 | 2.900146e+12 | 0.0 | 0.0 | 0.0 | 1.227219e+13 | 3.082694e+15 | ... | 0.0 | 6.795773e+15 | 1.623216e+15 | 0.0 | 0.0 | 0.0 | 1.490753e+15 | 0.0 | 0.0 | 0.0 |
| 2097 | 2.106728e+15 | 5.904238e+12 | 0.0 | 0.0 | 2.949143e+12 | 0.0 | 0.0 | 0.0 | 1.247953e+13 | 3.114726e+15 | ... | 0.0 | 6.869433e+15 | 1.640083e+15 | 0.0 | 0.0 | 0.0 | 1.506818e+15 | 0.0 | 0.0 | 0.0 |
| 2098 | 2.130099e+15 | 5.969776e+12 | 0.0 | 0.0 | 3.002774e+12 | 0.0 | 0.0 | 0.0 | 1.270647e+13 | 3.148800e+15 | ... | 0.0 | 6.945433e+15 | 1.658025e+15 | 0.0 | 0.0 | 0.0 | 1.523389e+15 | 0.0 | 0.0 | 0.0 |
| 2099 | 2.154891e+15 | 6.039297e+12 | 0.0 | 0.0 | 3.061103e+12 | 0.0 | 0.0 | 0.0 | 1.295330e+13 | 3.184944e+15 | ... | 0.0 | 7.026343e+15 | 1.677057e+15 | 0.0 | 0.0 | 0.0 | 1.541029e+15 | 0.0 | 0.0 | 0.0 |
| 2100 | 2.181460e+15 | 6.113803e+12 | 0.0 | 0.0 | 3.125324e+12 | 0.0 | 0.0 | 0.0 | 1.322506e+13 | 3.223680e+15 | ... | 0.0 | 7.113194e+15 | 1.697454e+15 | 0.0 | 0.0 | 0.0 | 1.559962e+15 | 0.0 | 0.0 | 0.0 |
101 rows × 46 columns
energyGen_cumu = energyGen.cumsum()
energyGen_cumu.columns = e_annual_sumDemands_cumu.columns = scennames_labels
netEnergy_cumu = energyGen_cumu.loc[[2100]] - e_annual_sumDemands_cumu.loc[[2100]]
#netEnergy_cumu.index= scennames_labels
plt.bar(scennames_labels, netEnergy_cumu.loc[2100]/1e12)
plt.title('Net Energy Cumulatively')
plt.ylabel('Cumulative Net Energy [TWh]')
Text(0, 0.5, 'Cumulative Net Energy [TWh]')
netEnergy_cumu_norm = netEnergy_cumu/netEnergy_cumu.loc[2100,'PV_ICE']
netEnergy_cumu_norm_waterfall = netEnergy_cumu_norm-1
plt.bar(scennames_labels, netEnergy_cumu_norm_waterfall.loc[2100])
plt.title('Net Energy Cumulatively Relative to PV ICE')
plt.ylabel('Relative Cumulative Net Energy')
#plt.ylim(-0.026,0.005)
plt.plot(0.0, lw=2)
plt.xticks(rotation=90)
([0, 1, 2, 3, 4, 5, 6, 7], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
energyBalance_allyears = energyGen_cumu/e_annual_sumDemands_cumu
energyBalance = energyBalance_allyears.loc[2100]
energyBalance.index = scennames_labels
plt.bar(scennames_labels, energyBalance)
plt.title('Energy Balance')
plt.ylabel('Unitless')
Text(0, 0.5, 'Unitless')
discussTable = pd.concat([total_installed,cumu_area_deployed_total,virgin,wastes,
cumu_e_demands, netEnergy_cumu.loc[2100].T, energyBalance],
axis=1, keys=['replacements','area','virgin','wastes','energydemand','netenergy','energybalance'])
#discussTable.to_csv(os.path.join(testfolder,'discussiontable.csv'))
discussTable
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 9.290967e+15 | 7.178739e+18 | 773.657878 |
| life_high | 1.732992e+08 | 7.033519e+11 | 9.180273e+09 | 4.394466e+09 | 8.461753e+15 | 7.179568e+18 | 849.472856 |
| life_low | 2.593475e+08 | 1.047702e+12 | 1.366772e+10 | 8.777769e+09 | 1.257411e+16 | 7.175456e+18 | 571.653296 |
| eff_high | 1.906612e+08 | 6.435582e+11 | 8.398524e+09 | 4.276345e+09 | 7.740063e+15 | 7.180290e+18 | 928.678411 |
| eff_high_bifi | 1.752295e+08 | 5.914535e+11 | 7.718548e+09 | 3.929078e+09 | 7.113194e+15 | 7.840880e+18 | 1103.300845 |
| eff_low | 1.906612e+08 | 9.678296e+11 | 1.263162e+10 | 6.447753e+09 | 1.163054e+16 | 7.176399e+18 | 618.030672 |
| circ_high | 1.906612e+08 | 7.728509e+11 | 4.746508e+09 | 3.423740e+06 | 8.341473e+15 | 7.179688e+18 | 861.721883 |
| circ_low | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 5.374146e+09 | 9.275074e+15 | 7.178755e+18 | 774.983528 |
discussTable_norm = (discussTable/discussTable.loc['PV_ICE'])*100-100
discussTable_norm
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 0.000000e+00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
| life_high | -9.106160e+00 | -8.992551 | -8.982934 | -14.498109 | -8.924944 | 0.011551 | 9.799548 |
| life_low | 3.602537e+01 | 35.563336 | 35.507452 | 70.786595 | 35.336905 | -0.045734 | -26.110324 |
| eff_high | -4.263256e-14 | -16.729327 | -16.733513 | -16.796343 | -16.692596 | 0.021604 | 20.037350 |
| eff_high_bifi | -8.093759e+00 | -23.471200 | -23.475082 | -23.553026 | -23.439680 | 9.223640 | 42.608364 |
| eff_low | -2.842171e-14 | 25.228496 | 25.235163 | 25.452119 | 25.181146 | -0.032590 | -20.115766 |
| circ_high | 0.000000e+00 | 0.000000 | -52.941136 | -99.933385 | -10.219539 | 0.013226 | 11.382810 |
| circ_low | 0.000000e+00 | 0.000000 | 0.306455 | 4.563261 | -0.171055 | 0.000221 | 0.171348 |
Now, what happens when we combine these?
#load in a baseline and materials for modification
sim2 = PV_ICE.Simulation(name='sim1', path=testfolder)
sim2.createScenario(name='PV_ICE', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['PV_ICE'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
path = C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\TEMP\EnergyAnalysis\Sensitivity Baseline folder directed to default: C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\baselines
mod_circ_vars = ['mod_EOL_collection_eff', 'mod_EOL_pg4_recycled', 'mod_EOL_pb4_recycled']
mat_circ_vars = ['mat_MFG_scrap_Recycled', 'mat_MFG_scrap_Recycling_eff', 'mat_MFG_scrap_Recycled_into_HQ',
'mat_MFG_scrap_Recycled_into_HQ_Reused4MFG', 'mat_PG4_Recycling_target', 'mat_Recycling_yield',
'mat_EOL_Recycled_into_HQ', 'mat_EOL_RecycledHQ_Reused4MFG']
#Life+Eff
sim2.createScenario(name='good_eff_life', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['good_eff_life'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim2.modifyScenario('good_eff_life', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']-0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('good_eff_life', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']+10, start_year=2022)
#t90
sim2.modifyScenario('good_eff_life', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']+10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('good_eff_life', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']+10, start_year=2022) #
sim2.modifyScenario('good_eff_life', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#Eff+Circ
sim2.createScenario(name='good_eff_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['good_eff_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('good_eff_circ', mod_circ_vars[var], 100.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['good_eff_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
sim2.modifyScenario('good_eff_circ', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#Life+Circ
sim2.createScenario(name='good_life_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['good_life_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim2.modifyScenario('good_life_circ', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']-0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('good_life_circ', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']+10, start_year=2022)
#t90
sim2.modifyScenario('good_life_circ', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']+10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('good_life_circ', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']+10, start_year=2022) #
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('good_life_circ', mod_circ_vars[var], 100.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['good_life_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
#life eff
sim2.createScenario(name='bad_life_eff', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['bad_life_eff'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim2.modifyScenario('bad_life_eff', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']+0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('bad_life_eff', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']-10, start_year=2022)
#t90
sim2.modifyScenario('bad_life_eff', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']-10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('bad_life_eff', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']-10, start_year=2022) #project lifetime of 25 years
#eff -5
sim2.modifyScenario('bad_life_eff', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']-5, start_year=2022) #
#eff circ
sim2.createScenario(name='bad_eff_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['bad_eff_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim2.modifyScenario('bad_life_eff', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']-5, start_year=2022) #
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('bad_eff_circ', mod_circ_vars[var],0.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['bad_eff_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],0.0, start_year=2022) #
#life circ
sim2.createScenario(name='bad_life_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['bad_life_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#degradation rate:
sim2.modifyScenario('bad_life_circ', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']+0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('bad_life_circ', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']-10, start_year=2022)
#t90
sim2.modifyScenario('bad_life_circ', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']-10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('bad_life_circ', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']-10, start_year=2022)
#0 circ
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('bad_life_circ', mod_circ_vars[var],0.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['bad_life_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],0.0, start_year=2022) #
#trim to start in 2000, this trims module and materials
#had to specify and end year, cannot use to extend
sim2.trim_Years(startYear=2000, endYear=2100)
Trimming and extending PV_ICE PV_ICE glass : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silicon : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silver : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE copper : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending good_eff_life good_eff_life glass : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life silicon : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life silver : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life copper : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending good_eff_circ good_eff_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending good_life_circ good_life_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending bad_life_eff bad_life_eff glass : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff silicon : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff silver : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff copper : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending bad_eff_circ bad_eff_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending bad_life_circ bad_life_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100
global_projection = pd.read_csv(os.path.join(supportMatfolder,'output-globalInstallsProjection.csv'), index_col=0)
global_projection.iloc[-1,:]
#fig, ax1 = plt.subplots()
#ax1.stackplot(global_projection.index, global_projection['World_cum']/1e6, color='#F7A11A')
#ax1.set_ylabel('Cumulative Solar Capacity [TW]', color='#F7A11A')
#ax1.set_ylim(0,90)
#ax1.set_xlim(2000,2100)
#ax2 = ax1.twinx()
#ax2.plot(global_projection['World_annual_[MWdc]']/1e6)
#ax2.set_ylabel('Annual Installations [TW]')
#ax2.set_ylim(0,5)
#plt.show()
#fig.savefig('energyresults-deployment.png', dpi=300, bbox_inches='tight')
World_cum 85966000.0 World_annual_[MWdc] 219320.0 Name: 2100, dtype: float64
#deployment projection for all scenarios
sim2.modifyScenario(scenarios=None,stage='new_Installed_Capacity_[MW]',
value= global_projection['World_annual_[MWdc]'], start_year=2000)
sim2.scenario.keys()
dict_keys(['PV_ICE', 'good_eff_life', 'good_eff_circ', 'good_life_circ', 'bad_life_eff', 'bad_eff_circ', 'bad_life_circ'])
bifiFactors = {'PV_ICE':0.0,
'good_eff_life':0.9,
'good_eff_circ': 0.9,
'good_life_circ': 0.0,
'bad_life_eff': 0.0,
'bad_eff_circ':0.0,
'bad_life_circ': 0.0
}
#PV ICE currently set up to read in a csv of bifi factors, so generate files to read in
idx_temp = pd.RangeIndex(start=2000,stop=2101,step=1) #create the index
df_temp = pd.DataFrame(index=idx_temp, columns=['bifi'], dtype=float)
bifiPathDict={}
for f in bifiFactors.keys(): #loop over module types
bifi = df_temp.copy() #copy of df
bifi['bifi'] = bifiFactors[f] #assign column
bifipath = os.path.join(testfolder,'bifi_'+str(f)+'.csv') #create file path
bifi.to_csv(path_or_buf=bifipath, index_label='year') #create file
bifiPathDict[str(f)] = bifipath
#append bifi path to dict? or list?
#CALCULATE MASS FLOW=
for scen in sim2.scenario.keys(): #loop over scenarios
sim2.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet
#sim1.calculateMassFlow()
ii_yearly2, ii_cumu2 = sim2.aggregateResults() #have to do this to get auto plots
sim2.saveSimulation(customname='_EnergySensitivity-goodbad_identicalinstalls')
:) Saved Input and Output Dataframes
effective_capacity = ii_yearly2.filter(like='ActiveCapacity')
plt.plot(ii_cumu2['newInstalledCapacity_sim1_PV_ICE_[MW]']/1e6, label='Capacity Target', color='black', ls='--')
plt.plot(effective_capacity/1e6, label=sim2.scenario.keys())
plt.legend()
plt.ylabel('Effective Capacity [TW]')
plt.title('Effective Capacity: No Replacements')
plt.ylim(0,)
(0.0, 90.26425956655)
UnderInstall_df = pd.DataFrame()
for row in range (0,len(sim2.scenario['PV_ICE'].dataIn_m)): #loop over length of years
print(row)
for scen in sim2.scenario.keys(): #loop over scenarios
print(scen)
Under_Installment = global_projection.iloc[row,0] - ((sim2.scenario[scen].dataOut_m['Effective_Capacity_[W]'][row])/1e6) # MWATTS
sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
UnderInstall_df.loc[row,scen] = Under_Installment #save the underinstallment as df
#calculate flows for that scenario with it's bifi factor and modified weibull
sim2.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
sim2.calculateEnergyFlow()
0 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 1 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 2 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 3 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 4 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 5 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 6 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 7 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 8 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 9 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 10 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 11 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 12 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 13 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 14 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 15 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 16 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 17 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 18 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 19 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 20 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432998.5467168738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 21 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310622547.3601646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76377157.33952625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432924.04582159425 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261938330.89069155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578975.0110904214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154079973.9523989 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64842935.423969 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786355639.833216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92106694.69215429 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521715.7825075759 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315879580.16664696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904326.337037242 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185809720.8861563 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78211148.46289065 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 22 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310461368.6879773 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76369711.78911571 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432823.033583846 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261914097.8014955 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578786.0158313033 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154064808.93646553 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64833880.4042765 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786519946.5601907 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92113253.73340242 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521785.7157147845 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315900927.92777175 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904492.3805277508 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185823080.269889 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78219988.98679619 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 23 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2310055435.7812033 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76351500.79548863 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432611.3579035213 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261854395.08647445 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1578323.876685321 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154027007.80163905 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64812508.408461414 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2786740247.5704126 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92121678.2370715 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521866.98228497064 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315928546.72507894 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904705.6759131942 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185840567.27831712 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78230861.75899833 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 24 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2309325171.397553 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76321135.15133962 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 432304.61247121094 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261753495.44216406 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1577548.257797645 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153964222.06371093 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64777440.11374295 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2787053505.757638 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92133158.56219965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 521967.5359917713 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 315966693.8072325 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1904998.3953473805 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185864304.6534009 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78245141.64941788 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 25 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2308249209.920904 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76278126.78477244 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 431917.1624316549 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261609982.31942314 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1576506.6771148657 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153878113.77522263 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64728703.185763806 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2787488635.2083306 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92148909.98139937 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 522094.9354707763 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 316019254.1701894 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1905385.4743610823 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185895841.02310774 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78264052.37449875 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 26 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2306819088.4559684 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76222892.38293956 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 431466.497187137 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261424127.9888626 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1575268.9884763628 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153770129.42329246 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64668704.280644 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2788083481.6990414 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92170177.5081866 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 522255.06399624347 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 316090815.76627 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1905890.972575193 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185937419.4601156 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78288212.32356778 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 27 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2304550170.0251346 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76143528.86516069 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 430946.69092929614 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261155089.6869647 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1573522.731681114 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153615243.18510935 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64589692.05806036 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2789003804.219681 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92202230.58533688 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 522464.65676145756 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 316199474.0728629 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1906598.5493967645 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 185999974.40577507 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78320206.9380376 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 28 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2302018777.6825304 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76057395.68132362 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 430409.6910749173 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 260860870.35688436 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1571666.4777217216 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153447481.3686252 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64506735.67856952 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2790215448.0127516 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92243340.63880846 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 522720.73615284526 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 316339900.46665394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1907486.4615629201 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 186080044.55921558 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78359872.46118483 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 29 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2299284181.744531 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75966836.05756417 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 429873.78307130333 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 260549108.45478413 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1569757.1075894358 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153267759.95985648 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64422944.12450748 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2791798344.3118677 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92295663.05790432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 523030.2396691884 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 316520026.4016196 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1908591.2527654031 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 186183881.77142698 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78408344.78316888 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 30 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2296439302.5063796 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75872917.31417052 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 429353.03150778165 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 260226205.69546613 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1567840.1095848782 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153079645.42002922 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64340300.041523516 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2793789102.86267 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92361306.40416044 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 523394.1569623857 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 316745715.2989692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1909932.410663075 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 186315362.10674122 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78466156.85016745 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 31 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2293193604.9149995 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75766075.0820776 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 428756.8946531925 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 259859358.86951658 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1565644.0769250484 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 152863653.95982924 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64251161.94518163 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2795822945.3710384 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92428206.59207387 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 523767.42574438115 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 316975419.6126166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1911308.3413073558 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 186450607.02808008 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78522003.39165688 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 32 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2290192751.9792514 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75667320.95423116 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 428206.1245811283 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 259520282.85397285 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1563614.286964697 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 152664013.35090068 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64168786.7715717 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2798665890.792349 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92521721.00242312 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 524288.9936991602 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 317296504.86088544 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1913231.212041389 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 186639655.06316322 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78600037.68713266 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 33 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2286598241.497539 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75549051.93848225 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 427546.6903835542 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 259114201.73618117 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1561183.388469385 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 152424921.59001538 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64070144.63478765 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2801357055.2078567 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92610242.80505168 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 524782.5952234828 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 317600447.8025995 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1915051.153772431 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 186818610.0796837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78673887.79016018 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 34 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2283584220.1460867 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75449893.89328305 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 426993.9003849655 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 258773738.85520124 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1559145.2964015135 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 152224464.42477646 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63987447.75967325 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2805220702.1177397 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92737331.65447773 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 525491.1364078481 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 318036812.1513428 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1917663.753517137 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 187075531.9506044 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78779896.05165493 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 35 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2280333763.9365864 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75342964.86867169 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 426397.8428464775 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 258406594.0238724 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1556947.4798103545 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 152008297.50546807 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63898273.683939 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2809376844.9332476 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92874041.7164459 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 526253.2407360905 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 318506211.2955385 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1920473.9657660003 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 187351903.993102 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78893918.15325938 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 36 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2276406104.294979 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75213763.53378631 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 425677.6692470403 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 257962976.37678033 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1554291.8786913606 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 151747105.04968527 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63790528.10490551 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2813199191.4485273 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92999772.05155805 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 526954.0931933789 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 318937911.134244 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1923058.3780832316 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 187606079.5016095 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 78998776.0672394 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 37 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2273386033.316064 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75114419.96626028 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 425123.9397056478 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 257621876.4979073 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1552249.9734020608 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 151546272.83389297 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63707683.11596742 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2818543031.8700957 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 93175549.6385203 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 527933.8834163621 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 319541450.0961975 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1926671.4343072863 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 187961430.16150004 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 79145367.20472011 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 38 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2269435433.918233 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74984468.96538578 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 424399.6186861734 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 257175684.84442046 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1549578.9636664188 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 151283564.85893306 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63599314.66761027 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2823344682.049726 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 93333492.69359468 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 528814.2425501429 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 320083753.52153593 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1929917.8590469211 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 188280726.6646307 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 79277081.97772479 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 39 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2265661650.6905894 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74860335.08845155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 423707.72641528386 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 256749466.50496715 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1547027.51895585 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 151032616.73838106 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63495797.63329553 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2828730559.164665 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 93510653.01431051 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 529801.7029570527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 320692040.1518852 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1933559.2509011258 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 188638872.64877322 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 79424820.68839018 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 40 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2262763320.4407434 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74764998.52027842 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 423176.3453622839 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 256422124.8092152 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1545067.9734345423 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 150839885.04262003 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63416295.2510484 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2835645340.0603075 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 93738104.32354185 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 531069.4660786726 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 321473002.7844984 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1938234.310365763 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 189098686.52052504 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 79614496.83915691 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 41 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2259141371.9294825 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74645859.76922666 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 422512.2983209633 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 256013057.4225202 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1542619.198420806 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 150599035.03132787 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63316944.021194585 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2842217202.7811575 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 93954275.85558383 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 532274.3525931541 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 322215235.8775067 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1942677.5107389274 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 189535697.27876896 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 79794765.7176881 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 42 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2255817551.9981184 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74536527.63259126 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 421902.91114595067 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 255637661.41559207 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1540371.9883231043 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 150378009.9986599 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63225770.685208604 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2849482970.905578 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 94193272.36138953 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 533606.4563846486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 323035839.377175 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1947589.8484929188 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 190018850.83387956 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 79994068.18617259 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 43 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2253426953.178723 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74457892.4582287 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 421464.6205089169 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 255367664.58420998 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1538755.7228470952 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 150219041.71616587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63160195.9145309 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2858289232.340322 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 94482941.07584263 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 535220.9914877231 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 324030427.8127813 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1953543.6980979631 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 190604442.94837734 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 80235626.56439522 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 44 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2251494257.415186 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74394319.33263142 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 421110.281593625 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 255149383.8642717 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1537449.0423578885 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 150090522.75921175 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63107181.56259072 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2868097283.908048 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 94805562.16879633 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 537019.1929019504 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 325138159.48045623 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1960174.8475065427 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 191256651.34568748 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 80504664.14463197 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 45 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2248682496.261063 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74301830.67792943 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 420594.77558536804 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 254831820.5866321 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1535548.0327813332 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 149903548.3841011 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63030054.22452001 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2877200960.404747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 95105013.90403461 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 538688.2540416237 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 326166338.28620857 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1966329.7727021414 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 191862020.7421005 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 80754380.42598513 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 46 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2247451246.9739027 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74261330.58540282 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 420369.039349692 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 254692761.99432257 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1534715.5948569998 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 149821673.69886002 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 62996280.73837355 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2888368444.92679 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 95472351.49776225 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 540735.6917941092 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 327427605.7426362 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1973880.0215685638 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 192604627.68414325 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 81060707.45601396 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 47 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2245221270.651547 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74187978.8706327 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 419960.1973229653 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 254440906.12034604 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1533207.9254819383 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 149673386.4189052 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 62935111.912302606 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2898697304.742101 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 95812103.79408437 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 542629.3765893232 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 328594158.0419781 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1980863.2824095832 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 193291468.3945196 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 81344030.76507409 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 48 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2244451389.2207217 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74162654.77979137 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 419819.0478945183 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 254353954.90112108 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1532687.4147299763 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 149622191.42557806 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 62913993.866026126 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2910793743.1161356 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 96209997.92648469 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 544847.1277162024 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 329960342.5242343 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1989041.5889742083 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 194095848.20743266 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 81675839.1998924 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 49 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2244034753.3234873 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74148950.16908216 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 419742.6622117912 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 254306899.60434315 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1532405.7304922163 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 149594486.28669646 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 62902565.43588311 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2923508326.318764 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 96628225.0025719 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 547178.2089697131 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 331396340.93406975 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1997637.8182744626 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 194941332.94778 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 82024603.5011646 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 50 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2245776196.552809 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74206232.32284069 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 420061.9369811118 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 254503580.0356504 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1533583.1064980794 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 149710287.4618623 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 62950333.67290541 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2938793472.925172 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 97131006.89253905 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 549980.5751884604 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 333122661.4804143 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2007971.9851392629 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 195957753.06975603 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 82443879.01750208 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 51 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2263022952.854695 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 74773538.41106977 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 423036.41926025297 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 256451446.84573016 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1545243.5021437595 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 150857149.22220373 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63423416.64741935 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2954992828.3521285 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 97663860.30556427 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 552950.5516927829 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 334952233.7332161 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2018924.2413426742 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 197034965.55865017 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 82888231.51648293 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 52 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2276423906.095049 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75214342.59640373 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 425493.33900494245 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 257964964.61007595 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1554303.780730423 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 151748275.67835736 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 63791008.25185098 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2967580122.3679595 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 98077900.39545119 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 555258.2958255977 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 336373855.96831465 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2027434.4113606103 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 197871985.91889688 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 83233504.23865171 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 53 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2290884261.880348 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75689994.23380983 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 428144.4887408541 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 259598132.41293815 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1564080.3130059435 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 152709849.4839333 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64187659.541384816 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2980274315.548484 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 98495456.77245295 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 557585.6387625597 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 337807551.507592 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2036016.855056842 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 198716114.77897123 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 83581709.23236777 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 54 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2306045744.4329047 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76188708.38086829 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 430924.1824815919 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 261310486.21087614 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1574330.8715482508 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 153718046.28715828 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64603542.919014454 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2993101150.3525186 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 98917376.19600405 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 559937.3001054373 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 339256227.73144233 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2044688.976705855 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 199569063.94143575 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 83933552.61999847 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 55 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2321997255.0846686 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 76713409.31307675 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 433631.8449979838 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 263112066.61389488 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1585115.561845347 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 154778777.7815864 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 65019370.78142173 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3006093835.857809 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99344751.02872957 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562319.3683794033 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 340723635.3080614 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2053473.22870318 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200433041.71843314 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84289945.33513921 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 56 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2338750920.959039 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 77253389.21469478 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 436230.6908042115 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 264992668.13840315 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1595724.937163165 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 155871453.18428275 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 65419721.193457425 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3007282497.7501407 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99383850.2724691 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562537.2966730627 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 340857884.03332585 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2054276.8736153662 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200512084.45820552 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84322550.63748603 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 57 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2355308197.585778 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 77753916.45763928 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 438348.96586793166 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 266756079.33485895 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1605367.2731321515 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 156883965.51777408 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 65763223.570357695 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3008141313.2835894 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99412099.7167276 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562694.7512065826 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 340954879.56363297 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2054857.5120108642 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200569193.32420075 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84346108.16911758 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 58 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2371331819.8100457 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 78234333.48154457 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 440286.6418721881 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 268454751.0211065 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1614404.1321165373 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 157850821.34056923 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 66078441.807256445 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3008756803.2544456 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99432345.33286537 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562807.594631594 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341024393.6487851 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2055273.6399163376 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200610121.7109125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84362991.21779636 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 59 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2386921889.9577737 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 78704095.18454136 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 442174.8405547922 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 270111827.3407959 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1622990.1423610877 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 158798121.32092625 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 66374346.830824226 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3009194899.208055 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99446755.83982447 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562887.9147833913 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341073872.6669103 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2055569.8331285808 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200639253.88439238 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84375008.3028196 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 60 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2402314118.873816 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 79169305.42461704 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 444099.43343635567 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 271750254.79654115 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1631550.3523804047 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 159755251.33216846 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 66662182.56291296 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3009504855.0076804 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99456951.36929859 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562944.7418247531 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341108879.40116864 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2055779.3917953263 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200659865.0907992 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84383510.47036274 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 61 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2417617385.0469513 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 79636249.48692103 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 446139.88680328813 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 273384094.2649704 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1640285.3838703728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 160732493.01259944 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 66960712.633868895 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3009722901.628407 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99464123.68467723 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562984.718312852 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341133505.8160218 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2055926.8113925161 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200674364.5901198 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84389491.54541883 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 62 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2429420689.357736 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 79961831.17469567 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 446896.10791534884 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 274550420.3966878 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1645328.068945148 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 161472174.55316883 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 67048486.66731015 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3009875377.575992 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99469139.15146175 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 563012.6731276694 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341150726.61003304 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2056029.8991757582 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200684503.82039565 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84393673.99999535 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 63 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2438635173.319859 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 80226107.65156557 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 447558.3663448809 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 275479626.34219944 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1649484.3150657672 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 162101832.6744191 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 67102867.50873445 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3009981266.6911325 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99472622.21451691 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 563032.0867509447 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341162685.8381522 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2056101.4899697318 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200691545.1547118 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84396578.5657399 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 64 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2446430141.17831 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 80475491.18812455 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 448486.8975769709 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 276322839.56748223 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1653866.0830492766 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 162659237.39858225 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 67181034.01294684 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3010054176.924698 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99475020.48690344 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562925.9425172213 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341170920.3966739 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2056150.7840024827 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200696393.48429623 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84393190.25295323 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 65 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2454697941.38984 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 80743593.89873917 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 450042.301564565 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 277236169.2307452 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1659601.8802697065 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 163230647.71624556 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 67332997.77162018 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3010103837.192547 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99476653.98666425 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 562479.8323821257 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341176529.07959557 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2055697.0839837 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200699695.75523975 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84340469.65557723 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 66 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2408206080.89898 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 79214314.12880328 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 441518.52210212016 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 271985329.57118285 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1628169.1007872017 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 160139067.12969106 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 66057714.0448342 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3009768496.757535 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99431476.70427908 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 561688.0780510587 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 341056285.3225676 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2054126.8175723744 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200609827.95975888 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 84237135.75515701 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 67 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2354535835.5127654 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 77448912.19284996 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 431678.6634572427 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 265923755.56581914 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1591883.0720031196 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 156570143.73192206 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 64585525.36855814 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 3005051735.8207116 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 99217591.28149898 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 559602.1873499064 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 340381588.206119 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2048878.1546829916 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 200178284.01042873 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 83960684.62103145 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 68 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2294675506.635401 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 75479896.7779504 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 420703.9199964944 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 259163067.01549736 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1551411.9766869328 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 152589596.84246358 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 62943541.10526182 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2997652599.043055 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 98912062.1478165 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 556913.4165698596 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 339398016.26703346 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2041486.1813643416 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 199554675.1921188 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 83592292.577414 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 69 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2227858148.0810685 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 73282040.34375194 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 408453.6804369865 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 251616644.2107298 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1506237.2885830929 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 148146426.6537369 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 61110723.72321884 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2987902146.4110546 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 98534001.83583117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 553833.0536287767 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 338158707.51675594 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2032290.3481177315 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 198787108.67725825 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 83149286.1148557 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 70 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2155015529.109643 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 70885992.0375317 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 395098.77458843647 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 243389722.15247494 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1456988.9695250252 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 143302593.25347692 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 59112631.89359643 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2976571230.30846 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 98106514.43743753 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 550559.0626443477 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 336745702.98771334 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2022168.0304169434 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 197945145.49481422 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 82659204.40426847 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 71 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 2076706618.8600223 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 68310138.3077371 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 380741.6833930131 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 234545431.40363154 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1404044.934130365 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 138095266.54884717 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 56964598.28407205 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2964062971.916754 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 97646495.44408432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 547245.2805070194 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 335206949.03420174 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 2011562.4905744053 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 197059602.72205198 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 82154316.13622275 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 72 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1991668623.1437912 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 65512941.440335006 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 365150.8872028709 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 224941150.65938643 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1346551.4172273783 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 132440474.20670165 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 54631984.12429398 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2924750930.709859 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 96270675.33053696 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 538280.1981965703 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 330546912.2774121 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1981106.9928734028 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 194385862.29298553 tonnes. ==> Working on Material : backsheet
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 80813006.96343319 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 73 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1901660105.9048932 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 62552246.749219365 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 348648.79968505894 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 214775493.98257223 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1285697.3700017603 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 126455155.88253926 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 52163027.27690193 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2877634026.4105034 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 94669722.69052185 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 528258.491544167 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 325078674.5179513 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1946521.3812775335 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 191275024.89009783 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 79313611.13031219 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 74 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1805775799.5454123 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 59398276.819392204 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 331069.44982276595 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 203946219.49782702 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1220870.7481843107 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 120079113.77610421 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 49532896.01815293 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2822596879.0251417 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 92850131.71937026 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 517440.651078959 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 318813882.44221216 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1908143.911079485 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 187666545.17080456 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 77654208.2454443 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 75 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1703492443.346734 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 56033819.77714198 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 312316.9034262268 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 192394229.58882427 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1151717.7793381682 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 113277552.49176607 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 46727237.17154958 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2760419105.364614 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 90799831.40723367 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 506092.9683094523 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 311764639.2815822 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1866297.543314708 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 183560262.52331707 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 75776146.78048567 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 76 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1596718604.2715776 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 52521655.05987645 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 292741.0755925747 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 180335079.81722504 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1079528.8305046454 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 106177386.47234951 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 43798403.221232995 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2691520926.216144 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 88533529.51170313 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 493461.2328137079 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 303983206.40871286 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1819716.0288505624 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 178978723.50002402 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 73829113.33871484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 77 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1484896691.2123582 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 48843441.547414064 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 272239.73802676797 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 167705795.25643757 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 1003926.9187421895 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 98741537.44597545 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 40731099.299280114 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2614984046.7565026 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 86015964.06743225 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 479429.02428580896 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 295339050.6824681 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1767970.0494697848 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 173889231.9590389 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 71729686.99089101 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 78 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1367714184.680715 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 44988899.38159865 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 250755.5936628605 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 154471079.62649915 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 924700.7520943608 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 90949223.7280019 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 37516752.91550445 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2531705108.2035456 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 83276628.73763162 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 464160.7321891421 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 285933439.7057658 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1711665.817214186 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 168351412.0701184 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 69445324.22288612 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 79 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1245754570.7447116 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 40977221.45835889 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 228395.61835664898 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 140696832.45809424 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 842244.8208808609 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 82839245.53381085 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 34171369.24327508 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2440537904.3621464 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 80277820.79481582 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 447446.2120226573 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 275636919.7444717 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1650028.391132975 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 162289044.28034276 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 66944584.303080715 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 80 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 1120259701.4794576 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 36849256.632433355 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 205387.4922461503 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 126523309.83171625 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 757398.7314761116 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 74494182.60373208 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 30729012.605373316 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2342318243.775957 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 77047032.90294468 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 429438.7002372881 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 264543887.89524892 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1583622.8547776549 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 155757707.55429488 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 64250393.67544092 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 81 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 989425258.7805077 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 32545654.57568882 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 181400.41313416223 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 111746730.1614864 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 668942.5986680655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 65794052.756696075 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 27140190.0907336 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2237648606.9080787 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 73604082.7499808 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 410248.65510559495 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 252722388.9357505 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1512856.540428314 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 148797465.18227667 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 61379278.534491844 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 82 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 855950104.9328306 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 28155190.300582755 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 156929.1882121738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 96671905.79459803 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 578701.1019202127 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 56918322.89632636 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 23478932.18805912 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2126080078.2928293 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 69934203.93740115 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 389793.7728353347 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 240121721.88076875 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1437425.9398860917 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 141378465.52307433 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 58318925.013202734 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 83 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 718175162.0807734 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 23623290.938346 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 131669.6435107351 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 81111458.73174568 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 485552.5518049736 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 47756668.917801864 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 19699729.963776387 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 2009114596.4194534 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 66086800.471047595 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 368349.4175937697 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 226911517.24416783 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1358346.5018947122 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 133600583.34673457 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 55110531.67178927 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 84 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 577983541.1995564 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 19011898.589994617 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 105967.02704716833 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 65278069.50856834 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 390770.1047716768 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 38434312.51093787 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 15854237.637722543 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 1885946255.2965014 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 62035363.28640477 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 345767.8352392914 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 213000755.15500456 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1275073.3597819125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 125410228.1259811 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 51731992.301006146 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 85 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 434833978.1378186 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 14303209.185996257 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 79722.10389715745 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 49110607.1820953 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 293987.8164048502 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 28915261.101445466 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 11927608.194595626 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 1755935509.9331865 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 57758855.513662554 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 321931.7721193205 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 198317204.72885653 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1187174.1222333375 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 116764871.88157484 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 48165764.016772375 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 86 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 411905954.06667244 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13549026.346109673 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 75518.49882244754 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 46521092.01025471 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 278486.360515822 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 27390610.692577723 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 11298686.579573601 tonnes. good_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 1620502876.322536 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 53304002.88820936 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 297101.66446763213 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 183021300.5371624 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 1095609.1888864452 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 107758975.01197194 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 44450811.93922781 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 87 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 381293490.6575537 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12542075.441043772 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 69906.03496003014 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 43063688.17120834 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 257789.51591558743 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 25354966.246796694 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10458978.811153451 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 1478964461.633873 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 48648309.78479554 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 271152.12793515745 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 167035803.00378346 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 999916.1852027816 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 98347060.52880745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 40568376.71160283 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 88 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 357878956.51165086 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11771889.584557287 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65613.23352837298 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 40419226.039441034 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 241959.13440959336 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23797964.258826684 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9816712.099275675 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 1330837163.9633808 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 43775885.29347424 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 243994.59101620645 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 150306150.09120637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 899768.4898028214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 88497003.48695345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 36505206.72404983 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 89 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 342302447.8365195 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11259523.777906189 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62757.44923968472 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38659998.75437727 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 231427.97998549795 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22762169.36230275 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9389444.448039364 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 1176720419.138963 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 38706446.95351592 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 215738.95378242573 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 132900042.71277997 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 795571.3765128526 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 78248664.71686202 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 32277744.655964848 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 90 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 325825396.87633795 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 10717535.988311004 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 59736.560269158996 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 36799063.27576023 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 220287.97603888842 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 21666490.88580506 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 8937474.689610913 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 1018128470.9663917 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 33489803.535627328 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 186662.83644768703 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 114988501.1577687 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 688348.6136038598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 67702737.25821392 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 27927526.605570182 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 91 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 308384907.02614963 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 10143857.326625498 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 56539.0352049761 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 34829315.99482339 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 208496.59867218515 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 20506746.378453173 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 8459077.55389091 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 853395418.5800735 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 28071157.73839757 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 156460.81411751042 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 96383376.828943 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 576973.898665162 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 56748443.29483194 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 23408856.48236964 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 92 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 288361676.5225928 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 9485223.298764361 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 52867.992593730705 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 32567871.265991613 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 194959.05075948287 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 19175256.73593663 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 7909835.175778485 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 685194741.0662652 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 22538449.632169984 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 125623.04024861076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 77386615.26831628 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 463254.7497801865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 45563561.81758384 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 18795068.507377557 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 93 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 266735507.23962167 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 8773863.01254481 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 48903.068505098185 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 30125388.944214836 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 180337.768605016 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 17737176.08244414 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 7316623.773436041 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 512305955.2995079 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16851533.26163956 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 93925.75246862417 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 57860373.827060856 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 346366.0079525055 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34066934.0623967 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14052684.513614124 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 94 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 243558344.4305827 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 8011485.1288861735 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 44653.786539101704 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 27507735.7810818 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 164667.871984082 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 16195958.634157097 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 6680868.218563209 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 336566819.073116 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 11070858.90317052 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 61705.883779805554 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 38012210.804713905 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 227550.16670355762 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 22380765.8574869 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 9232114.671437014 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 95 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 219004664.9764648 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 7203828.802160858 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 40152.13514359307 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 24734617.379179727 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 148067.32333713866 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 14563206.622786008 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 6007354.457015374 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 157830889.15534934 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 5191609.527085411 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 28936.58540049854 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 17825586.748541705 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 106708.21692161063 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 10495319.131555473 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 4329342.0052215755 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 96 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 193050141.13049716 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 6350093.807757678 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 35393.65408948907 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 21803286.137181778 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 130519.67486684081 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 12837302.320220254 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 5295415.172422781 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 123357275.47201042 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 4057651.8956655893 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 22616.221422634448 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 13932100.533411648 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 83400.87913317085 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 8202918.834244365 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 3383721.8887172653 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 97 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 151244159.70917702 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 4974948.976491767 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 27728.979841478063 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 17081674.59192737 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 102254.98119375286 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 10057319.777051747 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 4148666.317332142 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 91576368.02143408 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 3012266.7826321577 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 16789.535990711356 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 10342731.394459272 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 61914.05874997095 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 6089576.080051798 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 2511963.3988160104 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 98 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 105913692.71114677 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 3483871.497338959 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 19418.12930675227 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 11962003.93588767 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 71607.41067400099 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 7042968.656856934 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 2905239.9136595554 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 59658786.41422536 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 1962385.9789422497 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 10937.792831326933 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 6737926.132398339 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 40334.834049520105 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 3967144.8711304385 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 1636455.9015404487 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 99 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 55887927.53434699 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 1838349.2520959473 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 10246.446665853393 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 6312041.361429226 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 37785.38615951407 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 3716393.1484722155 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 1533020.2696955865 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 27580355.837351233 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 907214.2905097817 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 5056.559754143696 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 3114954.4183993307 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 18646.86063176479 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 1834017.64904173 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 756536.2755327012 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 100 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Energy Flows <<<< Working on Scenario: PV_ICE ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: good_eff_life ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: good_eff_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: good_life_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: bad_life_eff ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: bad_eff_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: bad_life_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet
sim2.saveSimulation(customname='_EnergySensitivity_withreplacements')
#aggregate results - mass
cc_yearly2, cc_cumu2 = sim2.aggregateResults() #have to do this to get auto plots
cc_yearly2.to_csv(os.path.join(testfolder, 'cc_10scen_yearly.csv'))
cc_cumu2.to_csv(os.path.join(testfolder, 'cc_10scen_cumu.csv'))
#aggregate results - energy
allenergy2, energyGen2, energy_demands2 = sim2.aggregateEnergyResults()
allenergy2.to_csv(os.path.join(testfolder, 'cc_10scen_allenergy.csv'))
energyGen2.to_csv(os.path.join(testfolder, 'cc_10scen_energyGen.csv'))
energy_demands2.to_csv(os.path.join(testfolder, 'cc_10scen_energy_demands.csv'))
#UnderInstall_df.to_csv(os.path.join(testfolder, 'cc_10scen_underInstalls.csv'))
:) Saved Input and Output Dataframes
C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2240: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1)
scennames_labels2=sim2.scenario.keys()
cumu_installs2 = cc_cumu2.filter(like='newInstalled')
total_installed2 = cumu_installs2.loc[2100]
total_installed2.index= scennames_labels2
plt.bar(scennames_labels2, total_installed2/1e6)
#plt.xticks(rotation=90)
plt.ylabel('Cumulative installed [TW]')
plt.title('Cumulative Installs with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Installs with Replacements')
cumu_area_deployed2 = pd.DataFrame()
for scen in sim2.scenario.keys():
area_deploy = sim2.scenario[scen].dataOut_m['Area'].cumsum()
cumu_area_deployed2 = pd.concat([cumu_area_deployed2,area_deploy], axis=1)
cumu_area_deployed2.columns = sim2.scenario.keys()
cumu_area_deployed2_total = cumu_area_deployed2.iloc[-1,:]
#cumu_area_deployed
plt.bar(scennames_labels2, cumu_area_deployed2.iloc[-1,:]/1e12)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed Area [m2 1e12]')
plt.title('Cumulative Area Deployed with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Area Deployed with Replacements')
cumu_virgin_module2 = cc_cumu2.filter(like='VirginStock_Module')
virgin2 = cumu_virgin_module2.loc[2100]
virgin2.index= scennames_labels2
plt.bar(scennames_labels2, virgin2/1e9)
#plt.legend(scennames)
plt.title('Cumulative Virgin Material Demands')
plt.ylabel('Virgin Material Requirements\n[billion tonnes]')
#plt.xticks(rotation=90)
Text(0, 0.5, 'Virgin Material Requirements\n[billion tonnes]')
cumu_lifecycle_wastes2 = cc_cumu2.filter(like='WasteAll_Module')
wastes2 = cumu_lifecycle_wastes2.loc[2100]
wastes2.index= scennames_labels2
plt.bar(scennames_labels2, wastes2/1e9)
#plt.legend(scennames)
plt.title('Cumulative Lifecycle Wastes')
plt.ylabel('Lifecycle Wastes\n[billion tonnes]')
Text(0, 0.5, 'Lifecycle Wastes\n[billion tonnes]')
e_annual_sumDemands2 = energy_demands2.filter(like='demand_total')
e_annual_sumDemands_cumu2 = e_annual_sumDemands2.cumsum()
cumu_e_demands2 = e_annual_sumDemands_cumu2.loc[2100]
cumu_e_demands2.index= scennames_labels2
plt.bar(scennames_labels2, cumu_e_demands2/1e12)
plt.title('Cumulative Lifecycle Energy Demands')
plt.ylabel('Cumulative Energy Demands\n[TWh]')
Text(0, 0.5, 'Cumulative Energy Demands\n[TWh]')
energyGen_cumu2 = energyGen2.cumsum()
energyGen_cumu2.columns = e_annual_sumDemands_cumu2.columns = scennames_labels2
netEnergy_cumu2 = energyGen_cumu2.loc[[2100]] - e_annual_sumDemands_cumu2.loc[[2100]]
#netEnergy_cumu.index= scennames_labels
plt.bar(scennames_labels2, netEnergy_cumu2.loc[2100]/1e12)
plt.title('Net Energy Cumulatively')
plt.ylabel('Cumulative Net Energy [TWh]')
Text(0, 0.5, 'Cumulative Net Energy [TWh]')
netEnergy_cumu_norm2 = netEnergy_cumu2/netEnergy_cumu2.loc[2100,'PV_ICE']
netEnergy_cumu_norm_waterfall2 = netEnergy_cumu_norm2-1
plt.bar(scennames_labels2, netEnergy_cumu_norm_waterfall2.loc[2100])
plt.title('Net Energy Cumulatively Relative to PV ICE')
plt.ylabel('Relative Cumulative Net Energy')
#plt.ylim(-0.026,0.005)
plt.plot(0.0, lw=2)
plt.xticks(rotation=90)
([0, 1, 2, 3, 4, 5, 6], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
energyBalance_allyears2 = energyGen_cumu2/e_annual_sumDemands_cumu2
energyBalance2 = energyBalance_allyears2.loc[2100]
energyBalance2.index = scennames_labels2
plt.bar(scennames_labels2, energyBalance2)
plt.title('Energy Balance')
plt.ylabel('Unitless')
Text(0, 0.5, 'Unitless')
discussTable2 = pd.concat([total_installed2,cumu_area_deployed2_total,virgin2,wastes2,
cumu_e_demands2, netEnergy_cumu2.loc[2100].T, energyBalance2],
axis=1, keys=['replacements','area','virgin','wastes','energydemand','netenergy','energybalance'])
#discussTable.to_csv(os.path.join(testfolder,'discussiontable.csv'))
discussTable2
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 9.290967e+15 | 7.178739e+18 | 773.657878 |
| good_eff_life | 1.590911e+08 | 5.376261e+11 | 7.016802e+09 | 3.354618e+09 | 6.470979e+15 | 7.839164e+18 | 1212.434123 |
| good_eff_circ | 1.752295e+08 | 5.914535e+11 | 3.636995e+09 | 3.138244e+06 | 6.386451e+15 | 7.841606e+18 | 1228.850313 |
| good_life_circ | 1.732992e+08 | 7.033519e+11 | 4.608957e+09 | 3.423740e+06 | 7.641676e+15 | 7.180388e+18 | 940.635216 |
| bad_life_eff | 2.593475e+08 | 1.311428e+12 | 1.710881e+10 | 1.099588e+10 | 1.573488e+16 | 7.172295e+18 | 456.821410 |
| bad_eff_circ | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 5.374146e+09 | 9.275074e+15 | 7.178755e+18 | 774.983528 |
| bad_life_circ | 2.593475e+08 | 1.047702e+12 | 1.371424e+10 | 9.132573e+09 | 1.254665e+16 | 7.175483e+18 | 572.904358 |
discussTable_all = pd.concat([discussTable,discussTable2], axis=0)
discussTable_all
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 9.290967e+15 | 7.178739e+18 | 773.657878 |
| life_high | 1.732992e+08 | 7.033519e+11 | 9.180273e+09 | 4.394466e+09 | 8.461753e+15 | 7.179568e+18 | 849.472856 |
| life_low | 2.593475e+08 | 1.047702e+12 | 1.366772e+10 | 8.777769e+09 | 1.257411e+16 | 7.175456e+18 | 571.653296 |
| eff_high | 1.906612e+08 | 6.435582e+11 | 8.398524e+09 | 4.276345e+09 | 7.740063e+15 | 7.180290e+18 | 928.678411 |
| eff_high_bifi | 1.752295e+08 | 5.914535e+11 | 7.718548e+09 | 3.929078e+09 | 7.113194e+15 | 7.840880e+18 | 1103.300845 |
| eff_low | 1.906612e+08 | 9.678296e+11 | 1.263162e+10 | 6.447753e+09 | 1.163054e+16 | 7.176399e+18 | 618.030672 |
| circ_high | 1.906612e+08 | 7.728509e+11 | 4.746508e+09 | 3.423740e+06 | 8.341473e+15 | 7.179688e+18 | 861.721883 |
| circ_low | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 5.374146e+09 | 9.275074e+15 | 7.178755e+18 | 774.983528 |
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 9.290967e+15 | 7.178739e+18 | 773.657878 |
| good_eff_life | 1.590911e+08 | 5.376261e+11 | 7.016802e+09 | 3.354618e+09 | 6.470979e+15 | 7.839164e+18 | 1212.434123 |
| good_eff_circ | 1.752295e+08 | 5.914535e+11 | 3.636995e+09 | 3.138244e+06 | 6.386451e+15 | 7.841606e+18 | 1228.850313 |
| good_life_circ | 1.732992e+08 | 7.033519e+11 | 4.608957e+09 | 3.423740e+06 | 7.641676e+15 | 7.180388e+18 | 940.635216 |
| bad_life_eff | 2.593475e+08 | 1.311428e+12 | 1.710881e+10 | 1.099588e+10 | 1.573488e+16 | 7.172295e+18 | 456.821410 |
| bad_eff_circ | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 5.374146e+09 | 9.275074e+15 | 7.178755e+18 | 774.983528 |
| bad_life_circ | 2.593475e+08 | 1.047702e+12 | 1.371424e+10 | 9.132573e+09 | 1.254665e+16 | 7.175483e+18 | 572.904358 |
discussTable_norm = (discussTable_all/discussTable.loc['PV_ICE'])*100-100
discussTable_norm
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 0.000000e+00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
| life_high | -9.106160e+00 | -8.992551 | -8.982934 | -14.498109 | -8.924944 | 0.011551 | 9.799548 |
| life_low | 3.602537e+01 | 35.563336 | 35.507452 | 70.786595 | 35.336905 | -0.045734 | -26.110324 |
| eff_high | -4.263256e-14 | -16.729327 | -16.733513 | -16.796343 | -16.692596 | 0.021604 | 20.037350 |
| eff_high_bifi | -8.093759e+00 | -23.471200 | -23.475082 | -23.553026 | -23.439680 | 9.223640 | 42.608364 |
| eff_low | -2.842171e-14 | 25.228496 | 25.235163 | 25.452119 | 25.181146 | -0.032590 | -20.115766 |
| circ_high | 0.000000e+00 | 0.000000 | -52.941136 | -99.933385 | -10.219539 | 0.013226 | 11.382810 |
| circ_low | 0.000000e+00 | 0.000000 | 0.306455 | 4.563261 | -0.171055 | 0.000221 | 0.171348 |
| PV_ICE | 0.000000e+00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
| good_eff_life | -1.655818e+01 | -30.435992 | -30.432492 | -34.730139 | -30.351935 | 9.199744 | 56.714506 |
| good_eff_circ | -8.093759e+00 | -23.471200 | -63.941304 | -99.938940 | -31.261713 | 9.233763 | 58.836399 |
| good_life_circ | -9.106160e+00 | -8.992551 | -54.304874 | -99.933385 | -17.751551 | 0.022975 | 21.582840 |
| bad_life_eff | 3.602537e+01 | 69.687123 | 69.623932 | 113.943791 | 69.356747 | -0.089764 | -40.953046 |
| bad_eff_circ | 0.000000e+00 | 0.000000 | 0.306455 | 4.563261 | -0.171055 | 0.000221 | 0.171348 |
| bad_life_circ | 3.602537e+01 | 35.563336 | 35.968760 | 77.689928 | 35.041367 | -0.045352 | -25.948617 |
Above it appears that both increasing and decreasing circularity reduce energy demands, which would imply there might be a bell curve or threshold situation.
#load in a baseline and materials for modification
sim3 = PV_ICE.Simulation(name='sim3', path=testfolder)
sim3.createScenario(name='PV_ICE', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim3.scenario['PV_ICE'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
mod_circ_vars = ['mod_EOL_collection_eff', 'mod_EOL_pg4_recycled', 'mod_EOL_pb4_recycled']
mat_circ_vars = ['mat_MFG_scrap_Recycled', 'mat_MFG_scrap_Recycling_eff', 'mat_MFG_scrap_Recycled_into_HQ',
'mat_MFG_scrap_Recycled_into_HQ_Reused4MFG', 'mat_PG4_Recycling_target', 'mat_Recycling_yield',
'mat_EOL_Recycled_into_HQ', 'mat_EOL_RecycledHQ_Reused4MFG']
#range of circularity / closed loop vs downcycled
sim3.createScenario(name='circ_high', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim3.scenario['circ_high'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_circ_vars)):
sim3.modifyScenario('circ_high', mod_circ_vars[var], 100.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim3.scenario['circ_high'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
#-----------------------------------------------------------------------------------------------------------
sim1.createScenario(name='circ_low', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['circ_low'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_circ_vars)):
sim1.modifyScenario('circ_low', mod_circ_vars[var],0.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim1.scenario['circ_low'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],0.0, start_year=2022) #
#trim to start in 2000, this trims module and materials
#had to specify and end year, cannot use to extend
sim1.trim_Years(startYear=2000, endYear=2100)
Trimming and extending PV_ICE PV_ICE glass : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silicon : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silver : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE copper : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending life_high life_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 life_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 life_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 life_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 life_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 life_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 life_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 life_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending life_low life_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 life_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 life_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 life_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 life_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 life_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 life_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 life_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_high eff_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_high_bifi eff_high_bifi glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_low eff_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_high circ_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_low circ_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100
global_projection = pd.read_csv(os.path.join(supportMatfolder,'output-globalInstallsProjection.csv'), index_col=0)
global_projection.iloc[-1,:]
#fig, ax1 = plt.subplots()
#ax1.stackplot(global_projection.index, global_projection['World_cum']/1e6, color='#F7A11A')
#ax1.set_ylabel('Cumulative Solar Capacity [TW]', color='#F7A11A')
#ax1.set_ylim(0,90)
#ax1.set_xlim(2000,2100)
#ax2 = ax1.twinx()
#ax2.plot(global_projection['World_annual_[MWdc]']/1e6)
#ax2.set_ylabel('Annual Installations [TW]')
#ax2.set_ylim(0,5)
#plt.show()
#fig.savefig('energyresults-deployment.png', dpi=300, bbox_inches='tight')
World_cum 85966000.0 World_annual_[MWdc] 219320.0 Name: 2100, dtype: float64
#deployment projection for all scenarios
sim1.modifyScenario(scenarios=None,stage='new_Installed_Capacity_[MW]',
value= global_projection['World_annual_[MWdc]'], start_year=2000)
UnderInstall_df = pd.DataFrame()
for row in range (0,len(sim1.scenario['PV_ICE'].dataIn_m)): #loop over length of years
print(row)
for scen in sim1.scenario.keys(): #loop over scenarios
print(scen)
Under_Installment = global_projection.iloc[row,0] - ((sim1.scenario[scen].dataOut_m['Effective_Capacity_[W]'][row])/1e6) # MWATTS
sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
UnderInstall_df.loc[row,scen] = Under_Installment #save the underinstallment as df
#calculate flows for that scenario with it's bifi factor and modified weibull
sim1.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
sim1.calculateEnergyFlow()
0 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 1 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 2 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 3 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 4 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 5 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 6 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 7 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 8 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 9 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 10 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 11 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 12 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 13 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 14 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 15 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 16 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 17 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 18 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 19 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 20 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 21 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522281.0480266041 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 22 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787195276.6245084 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92137323.551914 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522370.0331784635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315981852.8637393 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905079.478916816 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185870755.69400868 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78249089.93890864 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 23 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787421571.4978733 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92145977.2661618 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522470.6197191128 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316010223.10240877 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905299.08363438 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185888718.48207664 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78260304.15714504 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 24 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787753322.5102015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92158135.3186515 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522593.43704018486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316050622.1522593 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905609.6324606165 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185913857.16491142 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78275471.89481662 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 25 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2788227043.1910014 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92175283.71670865 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522747.92204010184 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316107844.0453842 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1906031.5436963488 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185948190.46619388 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78296097.5906738 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 26 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2788888852.2380667 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92198945.35354482 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522940.98065930686 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316187461.4129709 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1906594.3077959258 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185994449.43586808 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78322998.88555433 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 27 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2789926501.1222167 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92235084.68404324 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523177.6819884945 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316309971.9112594 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1907391.761098963 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186064979.1339966 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78359045.09197274 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 28 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2791301481.9354954 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92281736.62505063 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523468.5348794645 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316469328.64485127 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1908399.0236872435 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186155843.23558044 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78404029.8430971 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 29 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2793101589.7211823 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92341238.93991047 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523820.6539082674 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316674172.1953207 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1909655.0701142598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186273929.41358855 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78459126.38977602 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 30 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2795367450.4316335 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92415953.5149775 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 524234.9240568888 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316931048.95472646 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1911181.2284745786 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186423578.9659491 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78524902.07039961 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 31 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2797740088.0142555 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92493997.85689422 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 524670.3802205924 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317199017.14066404 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1912786.0908413366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186581352.8259736 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78590032.36400834 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 32 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2800993751.8636756 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92601022.23171073 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 525267.2749926466 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317566489.36051166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1914986.48129674 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186797712.50454617 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78679320.83767305 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 33 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2804174565.4355016 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92705650.30630213 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 525850.6512047087 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317925733.79332805 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1917137.3588633481 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187009227.84044114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78766594.05575582 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 34 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2808613754.4781585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92851670.7478629 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 526664.6914524983 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 318427100.4763427 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1920138.9447025075 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187304421.67694125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78888380.21572058 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 35 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2813439329.2291484 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93010400.76570019 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 527549.5047579606 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 318972105.96795267 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1923401.651473931 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187625309.09812894 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79020757.86377515 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 36 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2818032791.4253945 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93161495.79043178 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 528391.7146926689 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 319490896.4233161 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1926507.3449560367 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187930761.67415085 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79146763.28798284 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 37 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2824257545.2388563 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93366249.69744375 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 529532.9892598252 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 320193926.6709692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1930715.915950823 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 188344690.64671937 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79317513.8106859 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 38 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2830060746.3905454 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93557137.2641801 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 530596.9585714351 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 320849346.31728977 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1934639.4446724465 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 188730587.5291201 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79476698.9404396 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 39 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2836579374.5242863 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93771557.72460942 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 531792.0864684732 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 321585567.03999704 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1939046.6541563289 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189164058.33404103 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79655507.5719415 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 40 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2844772000.2107983 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94041041.81478697 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 533294.1201828112 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 322510850.80830634 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1944585.6332488398 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189708845.3625212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79880233.96856377 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 41 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2852784634.3728247 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94304605.35469502 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 534763.1517727083 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 323415806.14438707 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1950002.9160047998 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 190241663.45069712 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80100022.82646595 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 42 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2861674070.7769837 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94597009.98456965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 536392.9345323204 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 324419788.44858617 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1956012.9955901532 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 190832786.47142273 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80343862.46569243 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 43 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2872313003.2230663 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94946961.65335065 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 538343.4680064864 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 325621360.67721933 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1963205.8946048683 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 191540246.15715513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80635691.17438301 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 44 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2884196069.6063523 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 95337837.2352891 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 540522.0997540507 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 326963446.70225245 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1971239.942219598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 192330437.3207574 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80961646.76876783 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 45 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2895657711.0240116 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 95714850.67732444 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 542623.4677022506 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 328257936.54809034 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1978989.0675110093 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 193092604.88563365 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 81276042.55495977 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 46 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2909514269.5710473 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96170641.31343117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 545163.9177613085 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 329822910.85532695 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1988357.3772798944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 194014027.83898902 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 81656131.53223194 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 47 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2922924819.8279414 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96611761.17817841 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 547622.5970177903 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 331337512.51682204 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1997424.1443416267 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 194905792.47029212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82023986.38569231 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 48 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2938565694.2934284 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 97126244.20061798 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 550490.1820781209 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 333104009.34199774 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2007998.8159697722 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 195945867.5144763 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82453019.60724808 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 49 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2955371900.3007436 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 97679059.05003479 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 553571.4180643447 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 335002119.93809533 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2019361.359042944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 197063433.89442506 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82914018.17354493 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 50 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2975389712.6847734 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 98337514.8570096 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 557241.4673220231 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 337262952.73880476 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2032895.2438078865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 198394563.2469258 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 83463111.93124261 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 51 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2997077331.212422 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99050896.42363763 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 560767.4137569807 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 339712375.20295477 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2047558.0713110892 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 199836730.10582942 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 84058008.90221876 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 52 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3015817080.9179287 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99667312.28257981 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 564203.1440543853 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 341828862.2595073 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2060227.8679987553 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 201082871.81267345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 84572045.07094066 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 53 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3035416181.6079946 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 100311995.19863883 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 567796.4270544758 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 344042405.3207792 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2073478.6650961826 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 202386157.99153593 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85109653.45885612 tonnes. circ_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 54 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3055971913.195142 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 100988145.04810843 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 571428.0465142544 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 346363991.282484 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2087376.2327834861 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 203753057.4884865 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85665862.4336774 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 55 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3077552471.375847 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 101698005.02577409 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 574907.5228115292 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 348801322.238362 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2101422.880456818 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 205188105.12938696 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 86200868.42035276 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 56 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3099775636.2760825 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 102394201.90379474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 578237.8342585985 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 351227318.19112796 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2115078.32507386 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 206596889.55809063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 86714638.74314183 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 57 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3120846512.782079 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 103028070.13692683 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 580869.3039919726 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 353463949.5712474 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2127242.775371737 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 207879100.6267007 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87144186.62409392 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 58 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3141313723.7506366 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 103638822.48560081 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 583282.4200130433 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 355626826.0576378 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2138675.5043504247 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 209107859.0308703 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87539226.61699185 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 59 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3161209910.5689354 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104235758.12859832 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 585633.9891010947 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 357735405.107835 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2149515.978349514 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 210311380.46317437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87909011.25213963 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 60 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3180885815.8628216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104828164.82524592 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 588044.6004268441 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 359824289.52355015 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2160356.4688913035 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 211531178.87541956 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88269545.89969556 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 61 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3200477911.0676184 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 105424114.46718764 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 590617.9217952703 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 361911204.6060303 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2171457.4305810607 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 212780225.36896104 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88645579.93173994 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 62 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3213364918.3037395 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 105764716.64868635 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 591109.5194818717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 363145046.2009012 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2176266.0539972535 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 213577083.50659513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88685426.03433602 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 63 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3224276117.0574393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106072112.84309636 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 591747.0710837702 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 364229434.64980394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2180891.533722879 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 214325096.8655666 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88721504.03642517 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 64 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3233159691.4400015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106355022.30992965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 592712.4385074496 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 365183516.62116724 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2185720.4844666948 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 214967588.90801114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88785433.40861087 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 65 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3242505656.2274404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106657342.84706168 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 594478.3200243704 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 366212001.7636639 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2192232.450732148 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 215617689.47829115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88942766.62065046 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 66 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3180084591.6749086 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104604095.8866218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 583034.0933911637 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 359162101.0308466 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2150030.062261832 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 211466860.72407037 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87230540.71719038 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 67 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3108316553.9718065 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 102243394.31373188 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 569876.2003884964 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 351056543.3121035 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2101508.259107552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 206694484.01650354 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85261924.9289682 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 68 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3028386085.161887 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99614201.85591367 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 555221.813980373 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 342029112.0326631 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2047467.9007844112 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 201379328.13678688 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 83069411.54982078 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 69 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2939464840.3230333 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96689271.3538033 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 538919.0660900951 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 331986253.04513544 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1987348.9498364474 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 195466310.43059915 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80630278.86484602 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 70 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2842607769.427746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93503303.7988045 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 521161.3703779141 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 321047113.5098179 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1921864.6496034728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189025582.16356662 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 77973464.42393544 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 71 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2738586442.8181143 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 90081678.83592993 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 502090.1859157266 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 309298835.3932743 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1851536.652696552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 182108450.63691542 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 75120132.6006148 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 72 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2625935825.684617 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 86376206.35033397 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 481436.91442655836 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 296575956.12207294 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1775374.460658196 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 174617495.07359102 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 72030097.11212347 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 73 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2506647741.0719676 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 82452404.3629218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 459566.7351091357 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 283103434.28740734 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1694724.7293088338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 166685166.2164086 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 68757994.17840911 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 74 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2379819490.372835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 78280579.9617737 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 436314.1479432675 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 268779318.15841615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1608977.1512534993 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 158251437.09590587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 65279062.543803245 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 75 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2245536746.9510183 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 73863551.24323379 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 411694.8602130056 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 253613283.77498367 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1518189.6495764325 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 149322004.75465128 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 61595652.25077597 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 76 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2105520501.6696033 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 69257927.61125739 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 386024.3969676588 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 237799701.65664226 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1423525.772600281 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 140011310.34182188 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 57754970.5226664 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 77 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1959083922.049504 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 64441116.74528538 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 359176.8349054366 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 221261000.2202678 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1324521.158313531 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 130273681.39053562 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 53738177.36739079 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 78 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1805724760.735071 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 59396597.97455112 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 331060.09240925784 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 203940455.12086532 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1220836.241247966 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 120075719.8358844 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 49531496.010418765 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 79 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1646019453.358442 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 54143332.28150599 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 301779.85271379474 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 185903169.6054645 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1112860.744979274 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 109455757.05869274 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 45150738.229843184 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 80 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1481457612.8480675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 48730318.24122223 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 271609.2202281302 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 167317382.12611946 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1001601.7850369237 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 98512848.21318437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 40636764.49256736 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 81 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1310308917.5888746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 43100639.52870291 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 240230.959210561 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 147987668.3383473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 885889.5046505865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 87131931.68089166 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 35942111.63031817 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 82 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1135215822.7825544 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 37341215.730306655 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 208129.5352243238 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 128212469.91398415 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 767510.4469004982 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 75488723.44986369 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 31139262.870953165 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 83 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 954885228.7516917 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 31409512.278556384 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 175067.87243814635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 107845742.81439057 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 645590.3573132949 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 63497235.95546063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 26192748.15673938 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 84 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 771108458.209719 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 25364452.037759025 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 141374.3904849315 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 87089800.91230604 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 521340.33501985366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 51276587.22106629 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 21151703.931814503 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 85 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 583674688.7977773 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 19199100.323755916 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 107010.43736680906 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 65920833.70861661 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 394617.84468934353 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 38812758.14086345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 16010347.284489097 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 86 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 541258251.8884532 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 17803875.47808761 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 99233.84271173221 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 61130276.678002685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 365940.42688485445 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 35992181.99021735 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 14846853.477883097 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 87 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 500953793.6608844 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 16478120.992143434 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 91844.45649104803 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 56578248.74270194 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 338690.9011774867 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 33312046.601089396 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 13741291.791345526 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 88 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 473287878.4664393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 15568092.3553685 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 86772.21035474804 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 53453631.16045556 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 319986.1945405117 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 31472339.490610827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 12982408.600575961 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 89 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 452197757.66976273 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 14874364.57722973 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 82905.56495468837 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 51071690.718947 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 305727.33053158113 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 30069904.5840552 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 12403901.146497197 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 90 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 429941374.7770426 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 14142274.362933483 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 78825.0980212005 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 48558031.408744134 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 290679.96593573707 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 28589916.462444384 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 11793402.822262915 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 91 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 406430660.41854113 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 13368924.803126842 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 74514.66298847455 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 45902706.58252997 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 274784.55774805555 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 27026518.755418587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 11148497.862341914 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 92 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 379712340.90829295 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 12490065.900034772 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 69616.14826550975 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 42885111.45426326 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 256720.51306492495 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 25249824.146273278 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 10415607.465641463 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 93 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 350786605.0973553 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 11538597.360399228 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 64312.92765359517 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 39618208.405546635 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 237164.05166469404 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 23326342.436986063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 9622167.07036514 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 94 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 319830312.2845469 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 10520336.704641059 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 58637.42639110793 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 36121972.11174462 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 216234.74672168825 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 21267834.283486955 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 8773027.972703991 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 95 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 287058768.3494613 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 9442366.09558476 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 52629.11848092178 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 32420719.445522044 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 194078.16483967655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 19088616.933364976 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 7874096.068477805 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 96 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 252461179.52559337 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 8304330.488528256 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 46286.025002763716 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 28513231.347528692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 170687.00843842118 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 16787972.630896233 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 6925075.281886872 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 97 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 198678686.19520208 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 6535236.325410165 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 36425.58691212609 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 22438979.941201463 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 134325.089706305 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 13211585.054205708 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 5449807.6155453995 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 98 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 138970435.17024675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 4571223.282553531 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 25478.72527975299 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 15695467.223602524 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 93956.81302435767 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 9241150.922791 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 3811994.886972222 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 99 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 73253083.5953516 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 2409549.9221808827 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 13430.160095090034 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 8273280.364921921 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 49525.8309466649 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 4871128.166470632 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 2009350.9801444006 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 100 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_1508\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Energy Flows <<<< Working on Scenario: PV_ICE ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: life_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: life_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_high_bifi ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet